Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/include/getopt.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (show annotations) (download)
Sat Sep 1 22:45:15 2007 UTC (16 years, 8 months ago) by niro
File MIME type: text/plain
File size: 336 byte(s)
-import if magellan mkinitrd; it is a fork of redhats mkinitrd-5.0.8 with all magellan patches and features; deprecates magellan-src/mkinitrd

1 #ifndef _GETOPT_H
2 #define _GETOPT_H
3
4 #include <klibc/extern.h>
5
6 struct option {
7 const char *name;
8 int has_arg;
9 int *flag;
10 int val;
11 };
12
13 enum {
14 no_argument = 0,
15 required_argument = 1,
16 optional_argument = 2,
17 };
18
19 __extern int getopt_long(int, char *const *, const char *,
20 const struct option *, int *);
21
22 #endif /* _GETOPT_H */