Changeset 77bced3
- Timestamp:
- Aug 15, 2009, 7:08:18 PM (15 years ago)
- Branches:
- master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 636b137
- Parents:
- 075ba92
- git-author:
- Anders Kaseorg <andersk@mit.edu> (08/04/09 02:37:55)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (08/15/09 19:08:18)
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
fmtext.c
r075ba92 r77bced3 770 770 * If format_fn is specified, passes it the list element value 771 771 * and it will return a string which this needs to free. */ 772 void owl_fmtext_append_list(owl_fmtext *f, owl_list *l, const char *join_with, char *(format_fn)(const char *))772 void owl_fmtext_append_list(owl_fmtext *f, const owl_list *l, const char *join_with, char *(format_fn)(const char *)) 773 773 { 774 774 int i, size; -
functions.c
r075ba92 r77bced3 2274 2274 void owl_function_show_filters() 2275 2275 { 2276 owl_list *l;2276 const owl_list *l; 2277 2277 owl_filter *f; 2278 2278 int i, j; … … 2320 2320 { 2321 2321 owl_filter *f; 2322 owl_list *fl;2322 const owl_list *fl; 2323 2323 char buff[5000]; 2324 2324 char *tmp; -
global.c
re19eb97 r77bced3 685 685 686 686 int owl_global_message_is_puntable(owl_global *g, owl_message *m) { 687 owl_list *pl;687 const owl_list *pl; 688 688 int i, j; 689 689 -
list.c
r4d86e06 r77bced3 14 14 } 15 15 16 int owl_list_get_size( owl_list *l)16 int owl_list_get_size(const owl_list *l) 17 17 { 18 18 return(l->size); … … 33 33 } 34 34 35 void *owl_list_get_element( owl_list *l, int n)35 void *owl_list_get_element(const owl_list *l, int n) 36 36 { 37 37 if (n>l->size-1) return(NULL); -
mainwin.c
rd43edd2 r77bced3 15 15 WINDOW *recwin; 16 16 owl_view *v; 17 owl_list *filtlist;17 const owl_list *filtlist; 18 18 owl_filter *f; 19 19 -
perlglue.xs
re19eb97 r77bced3 346 346 PREINIT: 347 347 AV *filters; 348 owl_list *fl;348 const owl_list *fl; 349 349 owl_filter *f; 350 350 int i; -
select.c
r4d86e06 r77bced3 84 84 { 85 85 int i, len; 86 owl_list *dl;86 const owl_list *dl; 87 87 owl_dispatch *d; 88 88 … … 199 199 int i, len, max_fd; 200 200 owl_dispatch *d; 201 owl_list *dl;201 const owl_list *dl; 202 202 203 203 dl = owl_global_get_dispatchlist(&g); … … 237 237 int i, len; 238 238 owl_dispatch *d; 239 owl_list *dl;239 const owl_list *dl; 240 240 241 241 dl = owl_global_get_dispatchlist(&g);
Note: See TracChangeset
for help on using the changeset viewer.