Files
RedBear-OS/tests/stdlib/realpath.c
T
2019-02-20 19:27:18 +01:00

30 lines
501 B
C

#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void) {
char* path = realpath("stdlib/realpath.c", NULL);
if (!path) {
perror("realpath");
return -1;
}
puts(path);
free(path);
path = malloc(PATH_MAX);
memset(path, 0, PATH_MAX);
realpath("stdlib/realpath.c", path);
if (!path) {
perror("realpath");
free(path);
return -1;
}
puts(path);
free(path);
}