focus expression text field at startup -> version 1.2
[LeanCalc.git] / help / fflush
1 NAME
2     fflush - flush output to file
3
4 SYNOPSIS
5     fflush(fd)
6
7 TYPES
8     fd          file
9
10     return      nil
11
12 DESCRIPTION
13     This function forces a buffered output to the file associated with fd.
14
15 EXAMPLE
16     > fd = fopen("/tmp/file", "w")
17     > fputc(fd, "@");
18     > fflush(fd)
19
20 LIMITS
21     fd must be associated with an open file
22
23 LINK LIBRARY
24     none
25
26 SEE ALSO
27     errno, fclose, feof, ferror, fflush, fgetc, fgetline, fgets, files, fopen,
28     fprintf, fputc, fputs, fseek, fsize, ftell, isfile, printf, prompt
29