diff options
author | Oskar <[email protected]> | 2024-04-19 23:32:15 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-04-19 23:32:15 +0200 |
commit | e0e28a119e7a0f83ef9382413dba603ae342a8fb (patch) | |
tree | 1a0a7a60cee9efbbd38ed0fc63cbd057592cf24c /7ed.h | |
parent | 73b0414254e6b888656b4e5346292f27b67ac9d9 (diff) |
adding modes to choice
Diffstat (limited to '7ed.h')
-rw-r--r-- | 7ed.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -15,6 +15,10 @@ #define FILE_EXISTS 0 #define FILE_NOT_FOUND 1 +#define MODE_YES 0 +#define MODE_NO 1 +#define MODE_NORMAL 2 + int count_lines_in_file(char filename[], uint64_t *lines); int count_lines_in_file_posix(char filename[], size_t *lines); |