stdio.h (65bfae763d162fd50ea60edfd0111ead308fc911) | stdio.h (15aa00d597010009c3fb718ded37438aa3f601ab) |
---|---|
1/*- 2 * Copyright (c) 1990, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Chris Torek. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 269 unchanged lines hidden (view full) --- 278__END_DECLS 279#endif /* not ANSI */ 280 281/* 282 * Routines that are purely local. 283 */ 284#if !defined (_ANSI_SOURCE) && !defined(_POSIX_SOURCE) 285__BEGIN_DECLS | 1/*- 2 * Copyright (c) 1990, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Chris Torek. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 269 unchanged lines hidden (view full) --- 278__END_DECLS 279#endif /* not ANSI */ 280 281/* 282 * Routines that are purely local. 283 */ 284#if !defined (_ANSI_SOURCE) && !defined(_POSIX_SOURCE) 285__BEGIN_DECLS |
286int asprintf __P((char **, const char *, ...)); |
|
286char *fgetln __P((FILE *, size_t *)); 287int fpurge __P((FILE *)); 288int getw __P((FILE *)); 289int pclose __P((FILE *)); 290FILE *popen __P((const char *, const char *)); 291int putw __P((int, FILE *)); 292void setbuffer __P((FILE *, char *, int)); 293int setlinebuf __P((FILE *)); 294char *tempnam __P((const char *, const char *)); 295int snprintf __P((char *, size_t, const char *, ...)); | 287char *fgetln __P((FILE *, size_t *)); 288int fpurge __P((FILE *)); 289int getw __P((FILE *)); 290int pclose __P((FILE *)); 291FILE *popen __P((const char *, const char *)); 292int putw __P((int, FILE *)); 293void setbuffer __P((FILE *, char *, int)); 294int setlinebuf __P((FILE *)); 295char *tempnam __P((const char *, const char *)); 296int snprintf __P((char *, size_t, const char *, ...)); |
297int vasprintf __P((char **, const char *, _BSD_VA_LIST_)); |
|
296int vsnprintf __P((char *, size_t, const char *, _BSD_VA_LIST_)); 297int vscanf __P((const char *, _BSD_VA_LIST_)); 298int vsscanf __P((const char *, const char *, _BSD_VA_LIST_)); 299FILE *zopen __P((const char *, const char *, int)); 300__END_DECLS 301 302/* 303 * This is a #define because the function is used internally and --- 75 unchanged lines hidden --- | 298int vsnprintf __P((char *, size_t, const char *, _BSD_VA_LIST_)); 299int vscanf __P((const char *, _BSD_VA_LIST_)); 300int vsscanf __P((const char *, const char *, _BSD_VA_LIST_)); 301FILE *zopen __P((const char *, const char *, int)); 302__END_DECLS 303 304/* 305 * This is a #define because the function is used internally and --- 75 unchanged lines hidden --- |