/src/sys/arch/ews4800mips/stand/common/ |
prompt.c | 1 /* $NetBSD: prompt.c,v 1.5 2019/01/09 03:28:31 christos Exp $ */ 47 #define PROMPT ">> " 62 prompt(void) function in typeref:typename:void 93 printf(PROMPT); 105 printf("%s", PROMPT); 149 printf("%s%s", PROMPT, __cmd->buf); 161 printf(PROMPT);
|
/src/usr.bin/tip/ |
tip.h | 87 extern char *PR; /* remote prompt */ 204 #define PROMPT 12 245 extern int stoprompt; /* for interrupting a prompt session */ 283 int prompt(const char *, char *, size_t);
|
cmds.c | 77 if (prompt("Local file name? ", copyname, sizeof copyname)) 88 if (prompt("List command for remote system? ", buf, 106 if (prompt("[take] ", copyname, sizeof copyname)) 205 if (prompt("Local command? ", buf, sizeof buf)) 217 if (prompt("List command for remote system? ", buf, 267 if (prompt("Local file name? ", fname, sizeof fname)) 352 do { /* wait for prompt */ 361 } while ((c&STRIP_PAR) != character(value(PROMPT))); 397 if (prompt("[put] ", copyname, sizeof copyname)) 475 if (prompt("Local command? ", buf, sizeof buf) [all...] |
/src/usr.bin/sdiff/ |
sdiff.c | 58 static void prompt(const char *, const char *); 414 prompt(const char *s1, const char *s2) function in typeref:typename:void 418 /* Print command prompt. */ 459 goto PROMPT; 469 PROMPT: 472 /* Prompt user again. */ 892 prompt(left, right);
|