#include <stdarg.h>
#include <sys/types.h>
#include <Macros.h>
Go to the source code of this file.
|
| struct | FILE |
| | A structure containing information about a file. More...
|
| |
|
| C int | snprintf (char *buffer, unsigned int size, const char *fmt,...) |
| | Write a formatted string into a buffer. More...
|
| |
| C int | vsnprintf (char *buffer, unsigned int size, const char *fmt, va_list args) |
| | Write a formatted string into a buffer. More...
|
| |
| C int | printf (const char *format,...) |
| | Output a formatted string to standard output. More...
|
| |
| C int | vprintf (const char *format, va_list args) |
| | Output a formatted string to standard output, using a variable argument list. More...
|
| |
|
| typedef struct FILE | FILE |
| | A structure containing information about a file. More...
|
| |
| C FILE * | fopen (const char *filename, const char *mode) |
| | Open a stream. More...
|
| |
| C size_t | fread (void *ptr, size_t size, size_t nitems, FILE *stream) |
| | Binary input. More...
|
| |
| C size_t | fwrite (const void *ptr, size_t size, size_t nitems, FILE *stream) |
| | The fwrite() function shall write, from the array pointed to by ptr, up to nitems elements whose size is specified by size, to the stream pointed to by stream. More...
|
| |
| C int | fclose (FILE *stream) |
| | Close a stream. More...
|
| |