1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /* stdio.h */
- /*
- * Copyright (c) 2014 Wind River Systems, Inc.
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifndef ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_STDIO_H_
- #define ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_STDIO_H_
- #include <toolchain.h>
- #include <stdarg.h> /* Needed to get definition of va_list */
- #include <bits/restrict.h>
- #include <stddef.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #if !defined(__FILE_defined)
- #define __FILE_defined
- typedef int FILE;
- #endif
- #if !defined(EOF)
- #define EOF (-1)
- #endif
- #define stdin ((FILE *) 1)
- #define stdout ((FILE *) 2)
- #define stderr ((FILE *) 3)
- int __printf_like(1, 2) printf(const char *_MLIBC_RESTRICT format, ...);
- int __printf_like(3, 4) snprintf(char *_MLIBC_RESTRICT str, size_t len,
- const char *_MLIBC_RESTRICT format, ...);
- int __printf_like(2, 3) sprintf(char *_MLIBC_RESTRICT str,
- const char *_MLIBC_RESTRICT format, ...);
- int __printf_like(2, 3) fprintf(FILE * _MLIBC_RESTRICT stream,
- const char *_MLIBC_RESTRICT format, ...);
- int __printf_like(1, 0) vprintf(const char *_MLIBC_RESTRICT format, va_list list);
- int __printf_like(3, 0) vsnprintf(char *_MLIBC_RESTRICT str, size_t len,
- const char *_MLIBC_RESTRICT format,
- va_list list);
- int __printf_like(2, 0) vsprintf(char *_MLIBC_RESTRICT str,
- const char *_MLIBC_RESTRICT format, va_list list);
- int __printf_like(2, 0) vfprintf(FILE * _MLIBC_RESTRICT stream,
- const char *_MLIBC_RESTRICT format,
- va_list ap);
- int puts(const char *s);
- int fputc(int c, FILE *stream);
- int fputs(const char *_MLIBC_RESTRICT s, FILE *_MLIBC_RESTRICT stream);
- size_t fwrite(const void *_MLIBC_RESTRICT ptr, size_t size, size_t nitems,
- FILE *_MLIBC_RESTRICT stream);
- static inline int putc(int c, FILE *stream)
- {
- return fputc(c, stream);
- }
- static inline int putchar(int c)
- {
- return putc(c, stdout);
- }
- int sscanf(const char *str, const char *format, ...);
- #ifdef __cplusplus
- }
- #endif
- #endif /* ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_STDIO_H_ */
|