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