diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-04-28 15:13:10 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-04-28 15:13:10 -0400 |
commit | 7a1eef12299f4b030bfb77d9bbb133d0ba2ee674 (patch) | |
tree | 61d7008b25e37799318db4030b86f85fc0059275 /src/shared.h | |
parent | fix missing newline on single row output (diff) | |
download | lazysphere-7a1eef12299f4b030bfb77d9bbb133d0ba2ee674.tar.gz lazysphere-7a1eef12299f4b030bfb77d9bbb133d0ba2ee674.tar.bz2 lazysphere-7a1eef12299f4b030bfb77d9bbb133d0ba2ee674.zip |
add tail
Diffstat (limited to '')
-rw-r--r-- | src/shared.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared.h b/src/shared.h index 4556d5d..251a993 100644 --- a/src/shared.h +++ b/src/shared.h @@ -7,6 +7,7 @@ __attribute__ ((__format__(printf, 1, 2))) void error(const char* format, ...); +FILE* get_file_s(const char* path, const char* type); FILE* get_file(const char* path, const char* type); long int get_number(const char* text); |