mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-07-10 22:59:22 +00:00
Update userspace
This commit is contained in:
0
libs/include/.gitkeep
Normal file
0
libs/include/.gitkeep
Normal file
@ -1,8 +0,0 @@
|
||||
#ifndef __FENNIX_LIB_DRAW_H__
|
||||
#define __FENNIX_LIB_DRAW_H__
|
||||
|
||||
#include <types.h>
|
||||
|
||||
void DrawRect(int x, int y, int w, int h, int color);
|
||||
|
||||
#endif // !__FENNIX_LIB_DRAW_H__
|
@ -1,16 +0,0 @@
|
||||
#ifndef __FENNIX_LIBS_INIT_H__
|
||||
#define __FENNIX_LIBS_INIT_H__
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
int printf_libinit(const char *format, ...);
|
||||
int vprintf_libinit(const char *format, va_list arg);
|
||||
int sprintf_libinit(char *s, const char *format, ...);
|
||||
int vsprintf_libinit(char *s, const char *format, va_list arg);
|
||||
int snprintf_libinit(char *s, size_t count, const char *format, ...);
|
||||
int vsnprintf_libinit(char *s, size_t count, const char *format, va_list arg);
|
||||
|
||||
__attribute__((visibility("default"))) void init_log(const char *fmt, ...);
|
||||
|
||||
#endif // !__FENNIX_LIBS_INIT_H__
|
Reference in New Issue
Block a user