Changeset 76

Show
Ignore:
Timestamp:
04/16/04 23:13:31 (9 years ago)
Author:
aprilp
Message:

Added some documentation to commandline.c

Location:
trunk/wifidog
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog/ChangeLog

    r75 r76  
    222004-04-16  Philippe April <papril777@yahoo.com> 
    33    * Fixed CRLF/formatting in phpauth/login/index.php 
    4     * Added some documentation for firewall.c 
     4    * Added some documentation for firewall.c, commandline.c 
    55 
    662004-04-15  Alexandre Carmel-Veilleux <acv@acv.ca> 
  • trunk/wifidog/src/commandline.c

    r9 r76  
    3030extern s_config config; 
    3131 
     32/** 
     33 * Prints usage if wifidog is called with -h or with an unknown option 
     34 */ 
    3235void 
    3336usage(void) 
     
    4346} 
    4447 
     48/** 
     49 * @brief Parse the command line and set the config accordingly 
     50 * 
     51 * Uses getopt() to parse the command line and set configuration values 
     52 */ 
    4553void 
    4654parse_commandline(int argc, char **argv)