stdio.h 367 B

12345678910111213
  1. #pragma once
  2. #include <stdarg.h>
  3. #include <common/printk.h>
  4. #define SEEK_SET 0 /* Seek relative to start-of-file */
  5. #define SEEK_CUR 1 /* Seek relative to current position */
  6. #define SEEK_END 2 /* Seek relative to end-of-file */
  7. #define SEEK_MAX 3
  8. extern int vsprintf(char *buf, const char *fmt, va_list args);
  9. extern int sprintk(char *buf, const char *fmt, ...);