Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/getopt.c

    r193d280c r9d58539  
    9595 * Compute the greatest common divisor of a and b.
    9696 */
    97 static int gcd(int a, int b)
     97static int
     98gcd(a, b)
     99        int a;
     100        int b;
    98101{
    99102        int c;
    100        
     103
    101104        c = a % b;
    102105        while (c != 0) {
     
    105108                c = a % b;
    106109        }
    107        
     110           
    108111        return b;
    109112}
     
    114117 * in each block).
    115118 */
    116 static void permute_args(int panonopt_start, int panonopt_end, int opt_end,
    117     char **nargv)
     119static void
     120permute_args(panonopt_start, panonopt_end, opt_end, nargv)
     121        int panonopt_start;
     122        int panonopt_end;
     123        int opt_end;
     124        char **nargv;
    118125{
    119126        int cstart, cyclelen, i, j, ncycle, nnonopts, nopts, pos;
     
    150157 *  Returns -2 if -- is found (can be long option or end of options marker).
    151158 */
    152 static int getopt_internal(int nargc, char **nargv, const char *options)
     159static int
     160getopt_internal(nargc, nargv, options)
     161        int nargc;
     162        char **nargv;
     163        const char *options;
    153164{
    154165        const char *oli;                                /* option letter list index */
     
    288299 *      Parse argc/argv argument vector.
    289300 */
    290 int getopt(int nargc, char * const *nargv, const char *options)
     301int
     302getopt(nargc, nargv, options)
     303        int nargc;
     304        char * const *nargv;
     305        const char *options;
    291306{
    292307        int retval;
     
    317332 *      Parse argc/argv argument vector.
    318333 */
    319 int getopt_long(int nargc, char * const *nargv, const char *options,
    320     const struct option *long_options, int *idx)
     334int
     335getopt_long(nargc, nargv, options, long_options, idx)
     336        int nargc;
     337        char * const *nargv;
     338        const char *options;
     339        const struct option *long_options;
     340        int *idx;
    321341{
    322342        int retval;
Note: See TracChangeset for help on using the changeset viewer.