Initialize

This commit is contained in:
2021-12-16 09:29:17 +08:00
commit 6e0f72d7ed
22 changed files with 1550 additions and 0 deletions

8
test_strerror_r.c Normal file
View File

@@ -0,0 +1,8 @@
#include <string.h>
int main() {
char buf[280];
char* s = strerror_r(ENOENT, buf, 280);
printf("%s", s);
return 0;
}