diff options
author | David <dbphillipsnz@gmail.com> | 2014-09-27 17:49:13 +1200 |
---|---|---|
committer | David <dbphillipsnz@gmail.com> | 2014-09-27 17:49:13 +1200 |
commit | 1c5611894d10dfd434af0a750ad15a9bc01a14f0 (patch) | |
tree | c9e510b8277654ceb099ea25793e1375d5d546cf /common.h | |
parent | f80e1e42a919739b1ca22eb2516a74c874934e68 (diff) | |
download | paramano-1c5611894d10dfd434af0a750ad15a9bc01a14f0.tar.xz |
Naughty Phillid, underscore-prefixed variable names are bad!
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -22,11 +22,11 @@ #include <stdbool.h> #include <stdio.h> -int get_int_value_from_file(const char* filename); -int get_int(const char* string); -bool file_has_line(const char *filename, const char *line); +int get_int_value_from_file(const char* filename); +int get_int(const char* string); +bool file_has_line(const char *filename, const char *line); FILE* check_for_file(char* path); -void chomp(char* string); +void chomp(char* string); // <ew> Stringification of line number #define STRING2(x) #x |