LexLeo 0.0.0-dev+f8e5087-dirty
Technical documentation
Loading...
Searching...
No Matches
osal_stdio.h
Go to the documentation of this file.
1
2
3#ifndef LEXLEO_OSAL_STDIO_H
4#define LEXLEO_OSAL_STDIO_H
5
7
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
16
17size_t osal_stdio_write(
18 const void *ptr,
19 size_t size,
20 size_t nmemb,
21 OSAL_STDIO *stdio);
22
24
26 char *str,
27 size_t size,
28 const char *fmt,
29 ...);
30
31#ifdef __cplusplus
32}
33#endif
34
35#endif //LEXLEO_OSAL_STDIO_H
int osal_stdio_flush(OSAL_STDIO *stdio)
Definition osal_stdio.c:55
int osal_snprintf(char *str, size_t size, const char *fmt,...)
Definition osal_stdio.c:95
size_t osal_stdio_write(const void *ptr, size_t size, size_t nmemb, OSAL_STDIO *stdio)
Definition osal_stdio.c:45
OSAL_STDIO * osal_stdio_stdout(void)
Definition osal_stdio.c:23
OSAL_STDIO * osal_stdio_stderr(void)
Definition osal_stdio.c:29