Lines Matching refs:SIZE
207 static int noecho_fgets(char *buf, int size, FILE *tty);
229 int des_read_pw(char *buf, char *buff, int size, const char *prompt, int verify)
231 memset(buf,0,size);
232 memset(buff,0,size);
238 int des_read_pw(char *buf, char *buff, int size, char *prompt, int verify)
240 memset(buf,0,size);
241 memset(buff,0,size);
249 #define SIZE 4
250 char buf[SIZE+1];
253 fgets(buf,SIZE,in);
259 int des_read_pw(char *buf, char *buff, int size, const char *prompt,
365 fgets(buf,size,tty);
376 fgets(buff,size,tty);
479 static int noecho_fgets(char *buf, int size, FILE *tty)
487 if (size == 0)
492 size--;