Lines Matching refs:input
2 * \file include/input.h
40 * The input functions present an interface similar to the stdio functions
41 * on top of different underlying input sources.
43 * The #snd_config_load function uses such an input handle to be able to
51 * \brief Internal structure for an input object.
54 * input object. Applications don't access its contents directly.
69 int snd_input_close(snd_input_t *input);
70 int snd_input_scanf(snd_input_t *input, const char *format, ...)
75 char *snd_input_gets(snd_input_t *input, char *str, size_t size);
76 int snd_input_getc(snd_input_t *input);
77 int snd_input_ungetc(snd_input_t *input, int c);