2024-04-11 23:32:28 +08:00
|
|
|
#ifndef CRASHPOWEROS_PRINTF_H
|
|
|
|
#define CRASHPOWEROS_PRINTF_H
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
2024-05-03 20:32:10 +08:00
|
|
|
int vsprintf(char *buf, const char *fmt, va_list args);
|
|
|
|
int sprintf(char *buf, const char *fmt, ...);
|
|
|
|
void printf(const char *formet, ...);
|
|
|
|
void print(char *message);
|
2024-05-13 20:30:47 +08:00
|
|
|
void printk(const char *formet, ...);
|
2024-05-03 20:32:10 +08:00
|
|
|
|
2024-04-11 23:32:28 +08:00
|
|
|
#endif //CRASHPOWEROS_PRINTF_H
|