Changeset d43edd2
- Timestamp:
- Jul 22, 2009, 12:50:25 AM (16 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:
- 0bf6757
- Parents:
- 1ad4a4a
- Files:
-
- 42 edited
Legend:
- Unmodified
- Added
- Removed
-
buddy.c
rf4d0975 rd43edd2 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id$";4 2 5 3 void owl_buddy_create(owl_buddy *b, int proto, char *name) -
buddylist.c
rb7bb454 rd43edd2 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id$";4 2 5 3 void owl_buddylist_init(owl_buddylist *bl) -
cmd.c
rb39a9cd rd43edd2 4 4 #include <unistd.h> 5 5 #include "owl.h" 6 7 static const char fileIdent[] = "$Id$";8 6 9 7 extern owl_cmd commands_to_init[]; -
commands.c
r3e328b8 rd43edd2 4 4 #include <unistd.h> 5 5 #include "owl.h" 6 7 static const char fileIdent[] = "$Id$";8 6 9 7 /* fn is "char *foo(int argc, char **argv, char *buff)" */ -
context.c
rcf83b7a rd43edd2 1 1 #include <string.h> 2 2 #include "owl.h" 3 4 static const char fileIdent[] = "$Id$";5 3 6 4 #define SET_ACTIVE(ctx, new) ctx->mode = ((ctx->mode)&~OWL_CTX_ACTIVE_BITS)|new -
dict.c
raf1920fd rd43edd2 10 10 #include <unistd.h> 11 11 #include "owl.h" 12 13 static const char fileIdent[] = "$Id$";14 12 15 13 -
editwin.c
rdc7884d rd43edd2 4 4 #include <string.h> 5 5 #include <ctype.h> 6 7 static const char fileIdent[] = "$Id$";8 6 9 7 #define VALID_EXCURSION (0x9a2b4729) -
filter.c
re6a4dd5 rd43edd2 1 1 #include <string.h> 2 2 #include "owl.h" 3 4 static const char fileIdent[] = "$Id$";5 3 6 4 int owl_filter_init_fromstring(owl_filter *f, char *name, char *string) -
filterelement.c
re6a4dd5 rd43edd2 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id$";4 2 5 3 static char * owl_filterelement_get_field(owl_message *m, char * field) -
fmtext.c
r1490327 rd43edd2 2 2 #include <stdlib.h> 3 3 #include <string.h> 4 5 static const char fileIdent[] = "$Id$";6 4 7 5 /* initialize an fmtext with no data */ -
functions.c
re6d989f rd43edd2 12 12 #include <signal.h> 13 13 #include "owl.h" 14 15 static const char fileIdent[] = "$Id$";16 14 17 15 char *owl_function_command(char *cmdbuff) -
global.c
reb6cedc rd43edd2 8 8 #include <time.h> 9 9 #include "owl.h" 10 11 static const char fileIdent[] = "$Id$";12 10 13 11 #ifndef MAXHOSTNAMELEN -
help.c
re6d989f rd43edd2 1 1 #include "owl.h" 2 2 #include <string.h> 3 4 static const char fileIdent[] = "$Id$";5 3 6 4 void owl_help() -
history.c
r52f3507 rd43edd2 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id$";4 2 5 3 void owl_history_init(owl_history *h) -
keybinding.c
re1b136bf rd43edd2 2 2 #include <string.h> 3 3 #include "owl.h" 4 5 static const char fileIdent[] = "$Id$";6 4 7 5 /* -
keymap.c
re1b136bf rd43edd2 1 1 #include <string.h> 2 2 #include "owl.h" 3 4 static const char fileIdent[] = "$Id$";5 3 6 4 /* returns 0 on success */ -
keypress.c
r428834d rd43edd2 2 2 #include <string.h> 3 3 #include "owl.h" 4 5 static const char fileIdent[] = "$Id$";6 4 7 5 static struct _owl_keypress_specialmap { -
keys.c
r435d6b2 rd43edd2 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id$";4 2 5 3 #define BIND_CMD(kpress, command, desc) \ -
list.c
rf34dd65 rd43edd2 1 1 #include "owl.h" 2 2 #include <stdlib.h> 3 4 static const char fileIdent[] = "$Id$";5 3 6 4 #define INITSIZE 10 -
logging.c
rd8671a1 rd43edd2 4 4 #include <ctype.h> 5 5 #include <sys/param.h> 6 7 static const char fileIdent[] = "$Id$";8 6 9 7 /* This is now the one function that should be called to log a -
mainwin.c
rc2c5c77 rd43edd2 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id$";4 2 5 3 void owl_mainwin_init(owl_mainwin *mw) -
message.c
r7f6a8a2 rd43edd2 11 11 #include "owl.h" 12 12 13 static const char fileIdent[] = "$Id$";14 15 13 static owl_fmtext_cache fmtext_cache[OWL_FMTEXT_CACHE_SIZE]; 16 14 static owl_fmtext_cache * fmtext_cache_next = fmtext_cache; -
messagelist.c
r0c8ab5e rd43edd2 2 2 #include <stdlib.h> 3 3 #include <string.h> 4 5 static const char fileIdent[] = "$Id$";6 4 7 5 int owl_messagelist_create(owl_messagelist *ml) -
owl.c
reb6cedc rd43edd2 33 33 34 34 #define STDIN 0 35 36 static const char fileIdent[] = "$Id$";37 35 38 36 owl_global g; -
owl.h
r130633c rd43edd2 45 45 typedef void SV; 46 46 #endif 47 48 static const char owl_h_fileIdent[] = "$Id$";49 47 50 48 #define OWL_VERSION_STRING PACKAGE_VERSION -
perlconfig.c
r8966889 rd43edd2 7 7 #define OWL_PERL 8 8 #include "owl.h" 9 10 static const char fileIdent[] = "$Id$";11 9 12 10 extern XS(boot_BarnOwl); -
perlglue.xs
r7f6a8a2 rd43edd2 1 1 /* -*- mode: c; indent-tabs-mode: t; c-basic-offset: 8 -*- */ 2 static const char fileIdent[] = "$Id$";3 4 2 #ifdef HAVE_LIBZEPHYR 5 3 #include <zephyr/zephyr.h> -
popexec.c
r40c6657 rd43edd2 7 7 #endif 8 8 #include <sys/wait.h> 9 10 static const char fileIdent[] = "$Id$";11 9 12 10 /* starts up popexec in a new viewwin */ -
popwin.c
rf34dd65 rd43edd2 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id$";4 2 5 3 int owl_popwin_init(owl_popwin *pw) -
regex.c
r554a2b8 rd43edd2 1 1 #include <string.h> 2 2 #include "owl.h" 3 4 static const char fileIdent[] = "$Id$";5 3 6 4 void owl_regex_init(owl_regex *re) -
select.c
r5a35c708 rd43edd2 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id: select.c 894 2008-01-17 07:13:44Z asedeno $";4 2 5 3 static int dispatch_active = 0; -
style.c
re574a00 rd43edd2 1 1 #define OWL_PERL 2 2 #include "owl.h" 3 4 static const char fileIdent[] = "$Id$";5 3 6 4 void owl_style_create_perl(owl_style *s, char *name, SV *obj) -
tester.c
r3e8ff1e rd43edd2 2 2 #include <unistd.h> 3 3 #include <stdlib.h> 4 5 static const char fileIdent[] = "$Id$";6 4 7 5 owl_global g; -
text.c
r3e8ff1e rd43edd2 4 4 #include <ctype.h> 5 5 #include "owl.h" 6 7 static const char fileIdent[] = "$Id$";8 6 9 7 void owl_text_indent(char *out, char *in, int n) -
util.c
r7f6a8a2 rd43edd2 5 5 #include <ctype.h> 6 6 #include <pwd.h> 7 8 static const char fileIdent[] = "$Id$";9 7 10 8 void sepbar(char *in) -
variable.c
r81a96af rd43edd2 5 5 #include <ctype.h> 6 6 #include "owl.h" 7 8 static const char fileIdent[] = "$Id$";9 7 10 8 static int in_regtest = 0; -
view.c
r801b7ac rd43edd2 1 1 #include <stdlib.h> 2 2 #include "owl.h" 3 4 static const char fileIdent[] = "$Id$";5 3 6 4 void owl_view_create(owl_view *v, char *name, owl_filter *f, owl_style *s) -
viewwin.c
r47519e1b rd43edd2 1 1 #include <string.h> 2 2 #include "owl.h" 3 4 static const char fileIdent[] = "$Id$";5 3 6 4 #define BOTTOM_OFFSET 1 -
zbuddylist.c
rdad943e rd43edd2 1 1 #include "owl.h" 2 3 static const char fileIdent[] = "$Id";4 2 5 3 void owl_zbuddylist_create(owl_zbuddylist *zb) -
zcrypt.c
rf34dd65 rd43edd2 8 8 * the ~/.crypt-table will be checked for "crypt-classname" and then * 9 9 * "crypt-default" for the keyfile name. */ 10 11 static const char fileIdent[] = "$Id$";12 10 13 11 #include <stdio.h> -
zephyr.c
r7f6a8a2 rd43edd2 6 6 #include <string.h> 7 7 #include "owl.h" 8 9 static const char fileIdent[] = "$Id$";10 8 11 9 static GList *deferred_subs = NULL; -
zwrite.c
ra52d13a rd43edd2 4 4 #include <unistd.h> 5 5 #include "owl.h" 6 7 static const char fileIdent[] = "$Id$";8 6 9 7 int owl_zwrite_create_from_line(owl_zwrite *z, char *line)
Note: See TracChangeset
for help on using the changeset viewer.