File: clib.fncs

package info (click to toggle)
pact 980714-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 13,096 kB
  • ctags: 26,034
  • sloc: ansic: 109,076; lisp: 9,645; csh: 7,147; fortran: 1,050; makefile: 136; lex: 95; sh: 32
file content (24 lines) | stat: -rw-r--r-- 1,082 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
atof	: double atof (const char *str)
atol	: long atol (const char *str)
calloc  : byte *calloc (size_t ni, size_t bpi)
errno   : int errno
fclose	: int fclose (FILE *fp)
fflush	: int fflush (FILE *fp)
fgetc	: int fgetc (FILE *fp)
fgets	: char *fgets (char *s, int n, FILE *fp)
fopen	: FILE *fopen (const char *name, const char *mode)
fprintf	: int fprintf (FILE *fp, const char *format, ...)
fputs   : int fputs (const char *s, FILE *stream)
fread	: int fread (void *p, size_t sz, size_t ni, FILE *fp)
free	: void free (void *p)
fseek	: int fseek (FILE *fp, long offset, int whence)
ftell	: long ftell (FILE *fp)
fwrite	: int fwrite (const void *p, size_t sz, size_t ni, FILE *fp)
getenv	: char *getenv (const char *name)
malloc  : byte *malloc (size_t sz)
realloc : byte *realloc (void *p, size_t sz)
setvbuf	: int setvbuf (FILE *stream, char *buf, int type, size_t size)
sprintf	: int sprintf (char *s, const char *format, ...)
strtod	: double strtod (const char *str, char **ptr)
strtol	: long strtol (const char *str, char **ptr, int base)
ungetc	: int ungetc (int c, FILE *fp)