Changeset e9c6fc8
- Timestamp:
- Dec 10, 2009, 1:38:09 PM (15 years ago)
- Branches:
- master, release-1.10, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 438009c
- Parents:
- c0ddaea
- git-author:
- Anders Kaseorg <andersk@mit.edu> (11/04/09 18:20:05)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (12/10/09 13:38:09)
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
aim.c
r1fdca1b re9c6fc8 192 192 } 193 193 194 void owl_aim_unset_ignorelogin(owl_timer *t, void *data) { /* noproto */ 194 static void owl_aim_unset_ignorelogin(owl_timer *t, void *data) 195 { 195 196 owl_global_unset_ignore_aimlogin(&g); 196 197 } … … 257 258 #define AIM_CHARSET_UNICODE 0x0002 258 259 259 int owl_aim_do_send(const char *to, const char *msg, int flags) /* noproto */ 260 static int owl_aim_do_send(const char *to, const char *msg, int flags) 260 261 { 261 262 int ret; -
editwin.c
re8074ed re9c6fc8 786 786 } 787 787 788 int owl_editwin_at_beginning_of_line(owl_editwin *e) /*noproto*/ 788 static int owl_editwin_at_beginning_of_line(owl_editwin *e) 789 789 { 790 790 oe_excursion x; -
fmtext.c
r1ee5c79 re9c6fc8 26 26 } 27 27 28 void _owl_fmtext_realloc(owl_fmtext *f, int newlen) /*noproto*/ 28 static void _owl_fmtext_realloc(owl_fmtext *f, int newlen) 29 29 { 30 30 if(newlen + 1 > f->bufflen) { … … 144 144 145 145 /* Internal function. Parse attrbute character. */ 146 void _owl_fmtext_update_attributes(gunichar c, char *attr, short *fgcolor, short *bgcolor) /*noproto*/ 146 static void _owl_fmtext_update_attributes(gunichar c, char *attr, short *fgcolor, short *bgcolor) 147 147 { 148 148 if ((c & OWL_FMTEXT_UC_ATTR) == OWL_FMTEXT_UC_ATTR) { … … 164 164 165 165 /* Internal function. Scan for attribute characters. */ 166 void _owl_fmtext_scan_attributes(const owl_fmtext *f, int start, char *attr, short *fgcolor, short *bgcolor) /*noproto*/ 166 static void _owl_fmtext_scan_attributes(const owl_fmtext *f, int start, char *attr, short *fgcolor, short *bgcolor) 167 167 { 168 168 const char *p; … … 178 178 * bytes. 179 179 */ 180 void _owl_fmtext_append_fmtext(owl_fmtext *f, const owl_fmtext *in, int start, int stop) /*noproto*/ 180 static void _owl_fmtext_append_fmtext(owl_fmtext *f, const owl_fmtext *in, int start, int stop) 181 181 { 182 182 char attrbuff[6]; … … 241 241 } 242 242 243 void _owl_fmtext_wattrset(WINDOW *w, int attrs) /*noproto*/ 243 static void _owl_fmtext_wattrset(WINDOW *w, int attrs) 244 244 { 245 245 wattrset(w, A_NORMAL); … … 249 249 } 250 250 251 void _owl_fmtext_update_colorpair(short fg, short bg, short *pair) /*noproto*/ 251 static void _owl_fmtext_update_colorpair(short fg, short bg, short *pair) 252 252 { 253 253 if (owl_global_get_hascolors(&g)) { … … 256 256 } 257 257 258 void _owl_fmtext_wcolor_set(WINDOW *w, short pair) /*noproto*/ 258 static void _owl_fmtext_wcolor_set(WINDOW *w, short pair) 259 259 { 260 260 if (owl_global_get_hascolors(&g)) { … … 267 267 * must already be initiatlized with curses 268 268 */ 269 void _owl_fmtext_curs_waddstr(const owl_fmtext *f, WINDOW *w, int do_search) /*noproto*/ 269 static void _owl_fmtext_curs_waddstr(const owl_fmtext *f, WINDOW *w, int do_search) 270 270 { 271 271 /* char *tmpbuff; */ -
list.c
r0f15f12 re9c6fc8 20 20 21 21 22 void owl_list_grow(owl_list *l, int n) /*noproto*/ 22 static void owl_list_grow(owl_list *l, int n) 23 23 { 24 24 void *ptr; -
message.c
rba88ae7 re9c6fc8 23 23 } 24 24 25 owl_fmtext_cache *owl_message_next_fmtext(void) /*noproto*/ 25 static owl_fmtext_cache *owl_message_next_fmtext(void) 26 26 { 27 27 owl_fmtext_cache * f = fmtext_cache_next; -
obarray.c
r8bce750 re9c6fc8 14 14 * the index it should be inserted at. 15 15 */ 16 int owl_obarray_lookup(const owl_obarray *oa, const char * key, const char ** val) /*noproto*/ 16 static int owl_obarray_lookup(const owl_obarray *oa, const char *key, const char **val) 17 17 { 18 18 int first, last, mid; -
tester.c
r4cc02605 re9c6fc8 195 195 } 196 196 197 int owl_filter_test_string(const char * filt, const owl_message *m, int shouldmatch) /* noproto */ { 197 static int owl_filter_test_string(const char *filt, const owl_message *m, int shouldmatch) 198 { 198 199 owl_filter *f; 199 200 int ok; -
zephyr.c
r18fdd5f9 re9c6fc8 1307 1307 #define OWL_MAX_ZEPHYRGRAMS_TO_PROCESS 20 1308 1308 1309 int _owl_zephyr_process_events(void) /* noproto */ 1309 static int _owl_zephyr_process_events(void) 1310 1310 { 1311 1311 int zpendcount=0;
Note: See TracChangeset
for help on using the changeset viewer.