mirror of
https://github.com/lifegpc/c-utils.git
synced 2026-07-08 01:30:39 +08:00
Initialize
This commit is contained in:
8
test_strerror_r.c
Normal file
8
test_strerror_r.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user