Release calc version 2.10.2t30

This commit is contained in:
Landon Curt Noll
1996-07-06 04:17:00 -07:00
commit 4618313a82
388 changed files with 85904 additions and 0 deletions

28
help/fflush Normal file
View File

@@ -0,0 +1,28 @@
NAME
fflush - flush output to file
SYNOPSIS
fflush(fd)
TYPES
fd file
return nil
DESCRIPTION
This function forces and buffered output to the file associated with fd.
EXAMPLE
> fd = fopen("/tmp/file", "w")
> fputc(fd, "@");
> fflush(fd)
LIMITS
fd must be associaed with an open file
LIBRARY
none
SEE ALSO
errno, fclose, feof, ferror, fflush, fgetc, fgetline, fgets, files, fopen,
fprintf, fputc, fputs, fseek, fsize, ftell, isfile, printf, prompt