]> pd.if.org Git - pdclib/blob - personalities/__pdc_stdio.h
Minor doc extension.
[pdclib] / personalities / __pdc_stdio.h
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7 // Input/output - personality
8 // ----------------------------------------------------------------------------
9
10 #define BUFSIZ       // buffer size (see setvbuf()), >= 256
11 #define FOPEN_MAX    // supported number of simultaneously open files, >= 8
12 #define FILENAME_MAX // supported length of filenames
13 #define L_tmpnam     // length of filenames generated by tmpnam() including \0
14 #define TMP_MAX      // number of unique filenames generateable by tmpnam(),
15                      // during a program run; >= 25
16
17 #define stderr // FILE *
18 #define stdin  // FILE *
19 #define stdout // FILE *
20
21 // storing return code in fh->HostRC
22 void __pdc_fclose( FILE * fh );