config.def.h - sic - simple irc client
 (HTM) git clone git://git.suckless.org/sic
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       config.def.h (463B)
       ---
            1 /* Host used when "-h" is not given */
            2 #define DEFAULT_HOST "irc.oftc.net"
            3 
            4 /* Port used when "-p" is not given */
            5 #define DEFAULT_PORT "6667"
            6 
            7 /* Timestamp format; see strftime(3). */
            8 #define TIMESTAMP_FORMAT "%Y-%m-%d %R"
            9 
           10 /* Command prefix character. In most IRC clients this is '/'. */
           11 #define COMMAND_PREFIX_CHARACTER ':'
           12 
           13 /* Parting message used when none is specified with ":l ..." command. */
           14 #define DEFAULT_PARTING_MESSAGE "sic - 250 LOC are too much!"