Changes in / [8c3cae0:30428a9]


Ignore:
Files:
34 edited

Legend:

Unmodified
Added
Removed
  • aim.c

    rf271129 r3234121  
     1#include <stdio.h>
     2#include <stdio.h>
     3#include <sys/stat.h>
    14#include "owl.h"
    25
  • cmd.c

    rf271129 r14be3a5  
     1#include <stdio.h>
     2#include <stdlib.h>
     3#include <string.h>
     4#include <unistd.h>
    15#include "owl.h"
    26
  • commands.c

    rf271129 r287c634  
     1#include <getopt.h>
     2#include <stdio.h>
     3#include <stdlib.h>
     4#include <string.h>
     5#include <unistd.h>
    16#include "owl.h"
    2 #include <getopt.h>
    37
    48/* fn is "char *foo(int argc, const char *const *argv, const char *buff)" */
  • context.c

    rf271129 r6829afc  
     1#include <string.h>
    12#include "owl.h"
    23
  • dict.c

    rf271129 rce68f23  
    66 */
    77
     8#include <stdlib.h>
     9#include <string.h>
     10#include <unistd.h>
    811#include "owl.h"
     12
    913
    1014#define INITSIZE 30
  • editcontext.c

    rf271129 r6829afc  
    11#include "owl.h"
     2
    23#include <assert.h>
    34
  • editwin.c

    rf271129 rf661cee  
    11#include "owl.h"
     2#include <stdlib.h>
     3#include <unistd.h>
     4#include <string.h>
     5#include <ctype.h>
    26
    37#define VALID_EXCURSION (0x9a2b4729)
  • filter.c

    rf271129 r2560529  
     1#include <string.h>
    12#include "owl.h"
    23
  • 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>
    25#include <sys/wait.h>
    36#include <poll.h>
     7#include <fcntl.h>
     8#include <string.h>
     9
     10#include <glib.h>
    411
    512int send_receive(int rfd, int wfd, const char *out, char **in)
  • fmtext.c

    rf271129 r7abfcf2  
    11#include "owl.h"
     2#include <stdlib.h>
     3#include <string.h>
    24
    35/* 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>
    113#include "owl.h"
    214#include "filterproc.h"
    3 #include <stdio.h>
    4 #include <sys/stat.h>
    5 #include <sys/wait.h>
    615
    716CALLER_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>
    19#include "owl.h"
    2 #include <stdio.h>
    3 #include <sys/ioctl.h>
    410
    511static void _owl_global_init_windows(owl_global *g);
  • help.c

    rf271129 r820e852  
    11#include "owl.h"
     2#include <string.h>
    23
    34void owl_help(void)
  • keybinding.c

    rf271129 r6829afc  
     1#include <ctype.h>
     2#include <string.h>
    13#include "owl.h"
    24
  • keymap.c

    rf271129 rce68f23  
     1#include <string.h>
    12#include "owl.h"
    23
  • keypress.c

    rf271129 r2560529  
     1#include <ctype.h>
     2#include <string.h>
    13#include "owl.h"
    24
  • logging.c

    rf271129 rdde1b4d  
    11#include "owl.h"
    2 #include <stdio.h>
     2#include <stdlib.h>
     3#include <string.h>
     4#include <ctype.h>
     5#include <sys/param.h>
    36
    47typedef 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>
    111#include "owl.h"
    212#include "filterproc.h"
    3 #include <sys/socket.h>
    4 #include <arpa/inet.h>
    513
    614static owl_fmtext_cache fmtext_cache[OWL_FMTEXT_CACHE_SIZE];
  • messagelist.c

    rf271129 refeec7f  
    11#include "owl.h"
     2#include <stdlib.h>
     3#include <string.h>
    24
    35void owl_messagelist_create(owl_messagelist *ml)
  • owl.c

    rf271129 ra7fac14  
    77 */
    88
    9 #include "owl.h"
    109#include <stdio.h>
     10#include <unistd.h>
    1111#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>
    1220#include <sys/stat.h>
    1321#include <locale.h>
     22#include "owl.h"
     23
    1424
    1525#if OWL_STDERR_REDIR
  • owl.h

    rf271129 rcbc8657  
    2222#endif
    2323#include <sys/param.h>
    24 #include <sys/types.h>
    25 #include <ctype.h>
    26 #include <errno.h>
    2724#include <EXTERN.h>
    28 #include <fcntl.h>
    2925#include <netdb.h>
    3026#include <regex.h>
    3127#include <time.h>
    3228#include <signal.h>
    33 #include <stdlib.h>
    34 #include <string.h>
    3529#include <termios.h>
    36 #include <unistd.h>
    3730#include "libfaim/aim.h"
    3831#include <wchar.h>
    39 #include <glib.h>
     32#include "glib.h"
    4033#ifdef HAVE_LIBZEPHYR
    4134#include <zephyr/zephyr.h>
  • owl_perl.h

    rf271129 rb8a3e00  
    11#ifndef INC_BARNOWL_OWL_PERL_H
    22#define INC_BARNOWL_OWL_PERL_H
    3 
    4 #include <stdio.h>
    53
    64#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>
    17#define OWL_PERL
    28#include "owl.h"
    3 #include <stdio.h>
    49
    510extern XS(boot_BarnOwl);
  • perlglue.xs

    rf271129 ra130fc5  
    11/* -*- 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
    27#define OWL_PERL
    38#include "owl.h"
  • regex.c

    rf271129 rcbc8657  
     1#include <string.h>
    12#include "owl.h"
    23
  • tester.c

    rf271129 r67e5ba36  
    44#undef WINDOW
    55
     6#include <unistd.h>
    67#include <stdio.h>
     8#include <stdlib.h>
     9#include <string.h>
    710
    811#undef instr
  • text.c

    rf271129 r14be3a5  
     1#include <stdio.h>
     2#include <string.h>
     3#include <stdlib.h>
     4#include <ctype.h>
    15#include "owl.h"
    26
  • util.c

    rf271129 r4ebbfbc  
    11#include "owl.h"
     2#include <stdlib.h>
     3#include <string.h>
     4#include <unistd.h>
     5#include <ctype.h>
    26#include <pwd.h>
    37#include <sys/stat.h>
     8#include <sys/types.h>
     9#include <assert.h>
    410#include <stdarg.h>
     11#include <glib.h>
    512#include <glib/gstdio.h>
    613#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>
    16#include "owl.h"
    2 #include <stdio.h>
    37
    48#define OWLVAR_BOOL(name,default,summary,description) \
  • view.c

    rf271129 rfc8a87a  
     1#include <stdlib.h>
    12#include "owl.h"
    23
  • viewwin.c

    rf271129 r6829afc  
     1#include <string.h>
    12#include "owl.h"
    23
  • window.c

    rf271129 r6829afc  
    11#include "owl.h"
     2
     3#include <assert.h>
    24
    35struct _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>
    17#include "owl.h"
    2 #include <stdio.h>
    3 #include <sys/stat.h>
    48
    59#ifdef HAVE_LIBZEPHYR
  • zwrite.c

    rf271129 r3cdd6d2  
     1#include <string.h>
     2#include <pwd.h>
     3#include <sys/types.h>
     4#include <unistd.h>
    15#include "owl.h"
    26
Note: See TracChangeset for help on using the changeset viewer.