diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-07-18 11:29:10 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2013-07-18 11:29:10 +0200 |
commit | f36484f4043be83dba7e3a242d96636f2f7a29c1 (patch) | |
tree | 00e9e446faeb85b1529a159a480c130293b3497a /src/calcurse.h | |
parent | beac8bdd9be41c0bc17d85429ca74b4f6aa99a3e (diff) | |
download | calcurse-f36484f4043be83dba7e3a242d96636f2f7a29c1.zip |
Split online help code into a separate function
Reintroduce help.c and move the online help code into a new function
display_help().
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/calcurse.h')
-rw-r--r-- | src/calcurse.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/calcurse.h b/src/calcurse.h index a433361..38b18e1 100644 --- a/src/calcurse.h +++ b/src/calcurse.h @@ -723,6 +723,9 @@ void event_paste_item(struct event *, long); enum getstr getstring(WINDOW *, char *, int, int, int); int updatestring(WINDOW *, char **, int, int); +/* help.c */ +int display_help(const char *); + /* ical.c */ void ical_import_data(FILE *, FILE *, unsigned *, unsigned *, unsigned *, unsigned *, unsigned *); |