diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-11-13 05:30:27 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2023-11-13 05:30:27 +0100 |
| commit | 0e951a0f8831ac2885fe64531438eb28202f6e53 (patch) | |
| tree | ef9e76c8646c1225db2e542bef775325d9db8a39 /file.h | |
| parent | ab52e851c95ebe2fa1ee4c2a5dcbc826bbb41769 (diff) | |
| download | crep-0e951a0f8831ac2885fe64531438eb28202f6e53.tar.gz | |
Move to Chromium styleguide
Diffstat (limited to 'file.h')
| -rw-r--r-- | file.h | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -4,10 +4,10 @@ | |||
| 4 | #include <stdio.h> | 4 | #include <stdio.h> |
| 5 | 5 | ||
| 6 | struct FileContent { | 6 | struct FileContent { |
| 7 | const char *content; | 7 | const char* content; |
| 8 | size_t count; | 8 | size_t count; |
| 9 | }; | 9 | }; |
| 10 | 10 | ||
| 11 | struct FileContent read_entire_file(const char *file_path); | 11 | struct FileContent read_entire_file(const char* file_path); |
| 12 | 12 | ||
| 13 | #endif | 13 | #endif |
