File: getopt.h

package info (click to toggle)
wbxml2 0.9.2-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,712 kB
  • ctags: 2,793
  • sloc: ansic: 21,545; makefile: 134; cpp: 7; sh: 6
file content (20 lines) | stat: -rw-r--r-- 349 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * @file getopt.h
 * @ingroup wbxml2xml_tool
 * @ingroup xml2wbxml_tool
 *
 * @author Kannel Team (http://www.kannel.org/)
 *
 * @brief getopt() implementation
 */

#ifndef WBXML_GETOPT_H
#define WBXML_GETOPT_H

int getopt(int argc, char **argv, char *opts);
extern int opterr;
extern int optind;
extern int optopt;
extern char *optarg;

#endif