1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:07:36 +00:00

LibC: Implement ungetwc()

This commit is contained in:
Ali Mohammad Pur 2021-12-19 23:29:21 +03:30 committed by Ali Mohammad Pur
parent 14b91a3fe9
commit e717ca32d1
7 changed files with 63 additions and 18 deletions

View file

@ -6,6 +6,7 @@
#pragma once
#include <bits/wchar.h>
#include <stddef.h>
#include <sys/cdefs.h>
#include <sys/types.h>
@ -14,7 +15,6 @@ __BEGIN_DECLS
#define EXIT_SUCCESS 0
#define EXIT_FAILURE 1
#define MB_CUR_MAX 4
__attribute__((noreturn)) void _abort();