1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 21:38:11 +00:00

Userland: Add wc program (#228)

Fixes #159.
This commit is contained in:
Callum Attryde 2019-06-16 13:13:57 +01:00 committed by Andreas Kling
parent e3d3e431dc
commit 267672efee
3 changed files with 174 additions and 0 deletions

View file

@ -57,6 +57,8 @@ int fileno(FILE*);
int fgetc(FILE*);
int getc(FILE*);
int getchar();
ssize_t getdelim(char**, size_t*, int, FILE*);
ssize_t getline(char**, size_t*, FILE*);
int ungetc(int c, FILE*);
int remove(const char* pathname);
FILE* fdopen(int fd, const char* mode);