Changes in / [8c3cae0:30428a9]
- Files:
-
- 34 edited
Legend:
- Unmodified
- Added
- Removed
-
aim.c
rf271129 r3234121 1 #include <stdio.h> 2 #include <stdio.h> 3 #include <sys/stat.h> 1 4 #include "owl.h" 2 5 -
cmd.c
rf271129 r14be3a5 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #include <unistd.h> 1 5 #include "owl.h" 2 6 -
commands.c
rf271129 r287c634 1 #include <getopt.h> 2 #include <stdio.h> 3 #include <stdlib.h> 4 #include <string.h> 5 #include <unistd.h> 1 6 #include "owl.h" 2 #include <getopt.h>3 7 4 8 /* fn is "char *foo(int argc, const char *const *argv, const char *buff)" */ -
context.c
rf271129 r6829afc 1 #include <string.h> 1 2 #include "owl.h" 2 3 -
dict.c
rf271129 rce68f23 6 6 */ 7 7 8 #include <stdlib.h> 9 #include <string.h> 10 #include <unistd.h> 8 11 #include "owl.h" 12 9 13 10 14 #define INITSIZE 30 -
editcontext.c
rf271129 r6829afc 1 1 #include "owl.h" 2 2 3 #include <assert.h> 3 4 -
editwin.c
rf271129 rf661cee 1 1 #include "owl.h" 2 #include <stdlib.h> 3 #include <unistd.h> 4 #include <string.h> 5 #include <ctype.h> 2 6 3 7 #define VALID_EXCURSION (0x9a2b4729) -
filter.c
rf271129 r2560529 1 #include <string.h> 1 2 #include "owl.h" 2 3 -
filterproc.c
rf271129 re2cc848 1 #include "owl.h" 1 #include <signal.h> 2 #include <unistd.h> 3 #include <sys/select.h> 4 #include <sys/types.h> 2 5 #include <sys/wait.h> 3 6 #include <poll.h> 7 #include <fcntl.h> 8 #include <string.h> 9 10 #include <glib.h> 4 11 5 12 int send_receive(int rfd, int wfd, const char *out, char **in) -
fmtext.c
rf271129 r7abfcf2 1 1 #include "owl.h" 2 #include <stdlib.h> 3 #include <string.h> 2 4 3 5 /* initialize an fmtext with no data */ -
functions.c
rf271129 r30428a9 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <unistd.h> 4 #include <signal.h> 5 #include <netinet/in.h> 6 #include <string.h> 7 #include <time.h> 8 #include <sys/types.h> 9 #include <sys/stat.h> 10 #include <sys/wait.h> 11 #include <errno.h> 12 #include <signal.h> 1 13 #include "owl.h" 2 14 #include "filterproc.h" 3 #include <stdio.h>4 #include <sys/stat.h>5 #include <sys/wait.h>6 15 7 16 CALLER_OWN char *owl_function_command(const char *cmdbuff) -
global.c
rf271129 rdde1b4d 1 #include <stdio.h> 2 #include <unistd.h> 3 #include <stdlib.h> 4 #include <string.h> 5 #include <netdb.h> 6 #include <termios.h> 7 #include <sys/ioctl.h> 8 #include <time.h> 1 9 #include "owl.h" 2 #include <stdio.h>3 #include <sys/ioctl.h>4 10 5 11 static void _owl_global_init_windows(owl_global *g); -
help.c
rf271129 r820e852 1 1 #include "owl.h" 2 #include <string.h> 2 3 3 4 void owl_help(void) -
keybinding.c
rf271129 r6829afc 1 #include <ctype.h> 2 #include <string.h> 1 3 #include "owl.h" 2 4 -
keymap.c
rf271129 rce68f23 1 #include <string.h> 1 2 #include "owl.h" 2 3 -
keypress.c
rf271129 r2560529 1 #include <ctype.h> 2 #include <string.h> 1 3 #include "owl.h" 2 4 -
logging.c
rf271129 rdde1b4d 1 1 #include "owl.h" 2 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #include <ctype.h> 5 #include <sys/param.h> 3 6 4 7 typedef struct _owl_log_entry { /* noproto */ -
message.c
rf271129 r4ebbfbc 1 #include <stdlib.h> 2 #include <unistd.h> 3 #include <string.h> 4 #include <sys/socket.h> 5 #include <netdb.h> 6 #include <sys/types.h> 7 #include <sys/socket.h> 8 #include <netinet/in.h> 9 #include <arpa/inet.h> 10 #include <time.h> 1 11 #include "owl.h" 2 12 #include "filterproc.h" 3 #include <sys/socket.h>4 #include <arpa/inet.h>5 13 6 14 static owl_fmtext_cache fmtext_cache[OWL_FMTEXT_CACHE_SIZE]; -
messagelist.c
rf271129 refeec7f 1 1 #include "owl.h" 2 #include <stdlib.h> 3 #include <string.h> 2 4 3 5 void owl_messagelist_create(owl_messagelist *ml) -
owl.c
rf271129 ra7fac14 7 7 */ 8 8 9 #include "owl.h"10 9 #include <stdio.h> 10 #include <unistd.h> 11 11 #include <getopt.h> 12 #include <stdlib.h> 13 #include <string.h> 14 #include <signal.h> 15 #include <time.h> 16 #include <sys/param.h> 17 #include <sys/types.h> 18 #include <sys/time.h> 19 #include <termios.h> 12 20 #include <sys/stat.h> 13 21 #include <locale.h> 22 #include "owl.h" 23 14 24 15 25 #if OWL_STDERR_REDIR -
owl.h
rf271129 rcbc8657 22 22 #endif 23 23 #include <sys/param.h> 24 #include <sys/types.h>25 #include <ctype.h>26 #include <errno.h>27 24 #include <EXTERN.h> 28 #include <fcntl.h>29 25 #include <netdb.h> 30 26 #include <regex.h> 31 27 #include <time.h> 32 28 #include <signal.h> 33 #include <stdlib.h>34 #include <string.h>35 29 #include <termios.h> 36 #include <unistd.h>37 30 #include "libfaim/aim.h" 38 31 #include <wchar.h> 39 #include <glib.h>32 #include "glib.h" 40 33 #ifdef HAVE_LIBZEPHYR 41 34 #include <zephyr/zephyr.h> -
owl_perl.h
rf271129 rb8a3e00 1 1 #ifndef INC_BARNOWL_OWL_PERL_H 2 2 #define INC_BARNOWL_OWL_PERL_H 3 4 #include <stdio.h>5 3 6 4 #define OWL_PERL_VOID_CALL (void)POPs; -
perlconfig.c
rf271129 rdde1b4d 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #include <sys/types.h> 5 #include <sys/stat.h> 6 #include <errno.h> 1 7 #define OWL_PERL 2 8 #include "owl.h" 3 #include <stdio.h>4 9 5 10 extern XS(boot_BarnOwl); -
perlglue.xs
rf271129 ra130fc5 1 1 /* -*- mode: c; indent-tabs-mode: t; c-basic-offset: 8 -*- */ 2 #ifdef HAVE_LIBZEPHYR 3 #include <zephyr/zephyr.h> 4 #endif 5 #include <EXTERN.h> 6 2 7 #define OWL_PERL 3 8 #include "owl.h" -
regex.c
rf271129 rcbc8657 1 #include <string.h> 1 2 #include "owl.h" 2 3 -
tester.c
rf271129 r67e5ba36 4 4 #undef WINDOW 5 5 6 #include <unistd.h> 6 7 #include <stdio.h> 8 #include <stdlib.h> 9 #include <string.h> 7 10 8 11 #undef instr -
text.c
rf271129 r14be3a5 1 #include <stdio.h> 2 #include <string.h> 3 #include <stdlib.h> 4 #include <ctype.h> 1 5 #include "owl.h" 2 6 -
util.c
rf271129 r4ebbfbc 1 1 #include "owl.h" 2 #include <stdlib.h> 3 #include <string.h> 4 #include <unistd.h> 5 #include <ctype.h> 2 6 #include <pwd.h> 3 7 #include <sys/stat.h> 8 #include <sys/types.h> 9 #include <assert.h> 4 10 #include <stdarg.h> 11 #include <glib.h> 5 12 #include <glib/gstdio.h> 6 13 #include <glib-object.h> -
variable.c
rf271129 r40de7394 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #include <unistd.h> 5 #include <ctype.h> 1 6 #include "owl.h" 2 #include <stdio.h>3 7 4 8 #define OWLVAR_BOOL(name,default,summary,description) \ -
view.c
rf271129 rfc8a87a 1 #include <stdlib.h> 1 2 #include "owl.h" 2 3 -
viewwin.c
rf271129 r6829afc 1 #include <string.h> 1 2 #include "owl.h" 2 3 -
window.c
rf271129 r6829afc 1 1 #include "owl.h" 2 3 #include <assert.h> 2 4 3 5 struct _owl_window { /*noproto*/ -
zephyr.c
rf271129 rc855755 1 #include <stdlib.h> 2 #include <unistd.h> 3 #include <sys/types.h> 4 #include <sys/wait.h> 5 #include <sys/stat.h> 6 #include <string.h> 1 7 #include "owl.h" 2 #include <stdio.h>3 #include <sys/stat.h>4 8 5 9 #ifdef HAVE_LIBZEPHYR -
zwrite.c
rf271129 r3cdd6d2 1 #include <string.h> 2 #include <pwd.h> 3 #include <sys/types.h> 4 #include <unistd.h> 1 5 #include "owl.h" 2 6
Note: See TracChangeset
for help on using the changeset viewer.