293 char *catgets(nl_catd catd, int set_num, int msg_num, const char *s);
294
295 /* catopen.c */
296 nl_catd catopen(const char *name, int mode);
297
298 /* cfgetispeed.c */
299 speed_t cfgetispeed(const struct termios *termios_p);
300
301 /* cfgetospeed.c */
302 speed_t cfgetospeed(const struct termios *termios_p);
303
304 /* cfree.c */
305 void cfree(void *p, size_t num, size_t size);
306
307 /* cfsetispeed.c */
308 int cfsetispeed(struct termios *termios_p, speed_t speed);
309
310 /* cfsetospeed.c */
311 int cfsetospeed(struct termios *termios_p, speed_t speed);
312
313 /* cftime.c */
314 int cftime(char *buf, char *format, const time_t *t);
315 int ascftime(char *buf, const char *format, const struct tm *tm);
316
317 /* clock.c */
318 clock_t clock(void);
319
320 /* closedir.c */
321 int closedir(DIR *dirp);
322
323 /* confstr.c */
324 size_t confstr(int name, char *buf, size_t length);
325
326 /* crypt.c */
327 void setkey(const char *key);
328 void encrypt(char *block, int fake);
329 char *crypt(const char *key, const char *salt);
330
331 /* csetlen.c */
332 int csetlen(int cset);
|
293 char *catgets(nl_catd catd, int set_num, int msg_num, const char *s);
294
295 /* catopen.c */
296 nl_catd catopen(const char *name, int mode);
297
298 /* cfgetispeed.c */
299 speed_t cfgetispeed(const struct termios *termios_p);
300
301 /* cfgetospeed.c */
302 speed_t cfgetospeed(const struct termios *termios_p);
303
304 /* cfree.c */
305 void cfree(void *p, size_t num, size_t size);
306
307 /* cfsetispeed.c */
308 int cfsetispeed(struct termios *termios_p, speed_t speed);
309
310 /* cfsetospeed.c */
311 int cfsetospeed(struct termios *termios_p, speed_t speed);
312
313 /* cfmakeraw.c */
314 void cfmakeraw(struct termios *termios_p);
315
316 /* cftime.c */
317 int cftime(char *buf, char *format, const time_t *t);
318 int ascftime(char *buf, const char *format, const struct tm *tm);
319
320 /* clock.c */
321 clock_t clock(void);
322
323 /* closedir.c */
324 int closedir(DIR *dirp);
325
326 /* confstr.c */
327 size_t confstr(int name, char *buf, size_t length);
328
329 /* crypt.c */
330 void setkey(const char *key);
331 void encrypt(char *block, int fake);
332 char *crypt(const char *key, const char *salt);
333
334 /* csetlen.c */
335 int csetlen(int cset);
|