pager.h - rohrpost - A commandline mail client to change the world as we see it.
(HTM) git clone git://r-36.net/rohrpost
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
pager.h (434B)
---
1 /*
2 * Copy me if you can.
3 * by 20h
4 */
5
6 #ifndef __PAGER_H__
7 #define __PAGER_H__
8
9 char *getpager(void);
10 char *geteditor(void);
11
12 void runfile(char *app, char *file);
13 void editfile(char *file);
14 void pagefile(char *file);
15
16 char *runstring(void (*runner)(char *), char *str, int docmp);
17 char *editstring(char *str);
18 char *editstringext(char *str, char *ext);
19 void pagestring(char *str);
20 void pagestringext(char *str, char *ext);
21
22 #endif
23