File: makeargv.h

package info (click to toggle)
vile 9.8za-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,644 kB
  • sloc: ansic: 120,894; lex: 14,981; sh: 4,478; perl: 3,511; cpp: 3,180; makefile: 1,425; awk: 271
file content (16 lines) | stat: -rw-r--r-- 451 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * $Id: makeargv.h,v 1.5 2016/07/27 09:11:10 tom Exp $
 */

#ifdef __cplusplus
extern "C" {
#endif

extern int after_options(int /* first */, int /* argc */, char ** /* argv */);
extern int is_option(const char * /* param */);
extern int option_has_param(const char * /* option */);
extern int make_argv(const char * /* program */, const char * /*cmdline */, char *** /*argvp */, int * /*argcp */, char ** /*argend*/);

#ifdef __cplusplus
}
#endif