meta: move photon/libc to root

This commit is contained in:
2026-02-08 20:45:25 +00:00
parent f00e74260d
commit 345a37962e
140 changed files with 0 additions and 0 deletions

14
libc/include/wchar.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef WCHAR_H_
#define WCHAR_H_
#include <stdio.h>
#include <stdarg.h>
typedef unsigned int wchar_t;
extern int fwide(FILE *fp, int mode);
extern int vfwprintf(FILE *stream, const wchar_t *format, va_list arg);
extern int vswprintf(wchar_t *buf, size_t len, const wchar_t *format, va_list arg);
#endif