mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-27 23:08:31 +00:00
Add epoll and do more release readiness changes
This change also pays off some of the remaining technical debt with stdio, file descriptors, and memory managemnt polyfills.
This commit is contained in:
parent
a9ea949df8
commit
3e4fd4b0ad
271 changed files with 5706 additions and 1365 deletions
|
@ -21,14 +21,25 @@
|
|||
#include "libc/stdio/stdio.h"
|
||||
|
||||
/**
|
||||
* Stream decoder.
|
||||
* @see libc/fmt/vcscanf.h
|
||||
* Decodes data from stream.
|
||||
*
|
||||
* To read a line of data from a well-formed trustworthy file:
|
||||
*
|
||||
* int x, y;
|
||||
* char text[256];
|
||||
* fscanf(f, "%d %d %s\n", &x, &y, text);
|
||||
*
|
||||
* Please note that this function is brittle by default, which makes it
|
||||
* a good fit for yolo coding. With some toil it can be used in a way
|
||||
* that makes it reasonably hardened although getline() may be better.
|
||||
*
|
||||
* @see libc/fmt/vcscanf.c
|
||||
*/
|
||||
int(fscanf)(FILE *stream, const char *fmt, ...) {
|
||||
int rc;
|
||||
va_list va;
|
||||
va_start(va, fmt);
|
||||
rc = (vcscanf)((int (*)(void *))fgetc, stream, fmt, va);
|
||||
rc = (vcscanf)((int (*)(void *))fgetc, (void *)ungetc, stream, fmt, va);
|
||||
va_end(va);
|
||||
return rc;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue