Functions | |
int | snd_input_close (snd_input_t *input) |
Closes an input handle. | |
int | snd_input_scanf (snd_input_t *input, const char *format,...) |
Reads formatted input (like fscanf(3)) from an input handle. | |
char * | snd_input_gets (snd_input_t *input, char *str, size_t size) |
Reads a line from an input handle (like fgets(3)) . | |
int | snd_input_getc (snd_input_t *input) |
Reads a character from an input handle (like fgetc(3)) . | |
int | snd_input_ungetc (snd_input_t *input, int c) |
Puts the last character read back to an input handle (like ungetc(3)) . | |
int | snd_input_stdio_attach (snd_input_t **inputp, FILE *fp, int _close) |
Creates a new input object using an existing stdio FILE pointer. | |
int | snd_input_stdio_open (snd_input_t **inputp, const char *file, const char *mode) |
Creates a new input object reading from a file. | |
int | snd_input_buffer_open (snd_input_t **inputp, const char *buf, ssize_t size) |
Creates a new input object from a memory buffer. |
|
Creates a new input object from a memory buffer.
|
|
Closes an input handle.
|
|
Reads a character from an input handle (like
|
|
Reads a line from an input handle (like
fgets , the returned string is zero-terminated, and contains the new-line character '\n ' if the line fits into the buffer. |
|
Reads formatted input (like
|
|
Creates a new input object using an existing stdio
|
|
Creates a new input object reading from a file.
|
|
Puts the last character read back to an input handle (like
|