change get_binary to unsigned char

This commit is contained in:
2023-12-15 13:08:22 -08:00
parent d50611a198
commit 56f3a9b9bf
3 changed files with 5 additions and 5 deletions

View File

@ -25,7 +25,7 @@ Reads a file at `path` and returns the contents as a single string. The string i
the user is responsible for freeing it when finished.
```c
char *get_input(const char *path);
unsigned char *get_input(const char *path);
/* Usage */
char *str = get_input("/home/evan/textfile");