mostly-standard scanf

This commit is contained in:
pommicket 2022-02-15 15:40:15 -05:00
parent 1ea9d85e3f
commit f973ff8cb8
4 changed files with 433 additions and 47 deletions

View file

@ -3,13 +3,6 @@
#include <stdc_common.h>
void *memset(void *s, int c, size_t n) {
char *p = s, *end = p + n;
while (p < end)
*p++ = c;
return s;
}
#endif // _STRING_H