12345678910111213 |
- #pragma once
- #include <stdarg.h>
- #include <common/printk.h>
- #define SEEK_SET 0
- #define SEEK_CUR 1
- #define SEEK_END 2
- #define SEEK_MAX 3
- extern int vsprintf(char *buf, const char *fmt, va_list args);
- extern int sprintk(char *buf, const char *fmt, ...);
|