mirror of
https://github.com/lifegpc/c-utils.git
synced 2026-06-06 13:18:57 +08:00
11 lines
172 B
C
11 lines
172 B
C
#include <errno.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
char buf[280];
|
|
char* s = strerror_r(ENOENT, buf, 280);
|
|
printf("%s", s);
|
|
return 0;
|
|
}
|