diff options
author | Mattias Andrée <maandree@kth.se> | 2024-07-01 20:11:29 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-07-01 20:46:56 +0200 |
commit | b550a5ba0261f3b6aba8988e37f1005102544568 (patch) | |
tree | 77d996b805cf8561847872636b4c94039d329756 /ereadlink.c | |
parent | Fix libsimple_abspath (diff) | |
download | libsimple-b550a5ba0261f3b6aba8988e37f1005102544568.tar.gz libsimple-b550a5ba0261f3b6aba8988e37f1005102544568.tar.bz2 libsimple-b550a5ba0261f3b6aba8988e37f1005102544568.tar.xz |
Add readlink and readmagiclink functions
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'ereadlink.c')
-rw-r--r-- | ereadlink.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ereadlink.c b/ereadlink.c new file mode 100644 index 0000000..3b990e4 --- /dev/null +++ b/ereadlink.c @@ -0,0 +1,18 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" +#ifndef TEST + + +extern inline char *libsimple_ereadlink(const char *); + + +#else +#include "test.h" + +int +main(void) /* TODO test */ +{ + return 0; +} + +#endif |