diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-08-26 21:33:53 +0200 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-08-26 21:33:53 +0200 |
commit | f181bb29d898642470cb2026264debcac1449e95 (patch) | |
tree | 6abfbdcf6b411747a7558f94e5085575e8719aa3 /st.c | |
parent | c81ea2900195a72a2e1a86d2cf3e7ebb6f941e2f (diff) | |
download | st-f181bb29d898642470cb2026264debcac1449e95.tar.gz st-f181bb29d898642470cb2026264debcac1449e95.tar.bz2 |
update function prototypes.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -136,6 +136,7 @@ static void tinsertblankline(int); static void tmoveto(int, int); static void tnew(int, int); static void tnewline(void); +static void tputtab(void); static void tputc(char); static void tputs(char*, int); static void treset(void); @@ -152,6 +153,9 @@ static void ttyread(void); static void ttyresize(int, int); static void ttywrite(const char *, size_t); +static void xbell(void); +static void xdraws(char *, Glyph, int, int, int); +static void xhints(void); static void xclear(int, int, int, int); static void xcursor(int); static void xinit(void); |