File: getopt.ch

package info (click to toggle)
ucl 1.03%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,284 kB
  • ctags: 10,021
  • sloc: sh: 11,733; asm: 10,461; ansic: 5,057; makefile: 109
file content (46 lines) | stat: -rw-r--r-- 924 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* ACC -- Automatic Compiler Configuration

   Copyright (C) 1996-2004 Markus Franz Xaver Johannes Oberhumer
   All Rights Reserved.

   This software is a copyrighted work licensed under the terms of
   the GNU General Public License. Please consult the file "ACC_LICENSE"
   for details.

   Markus F.X.J. Oberhumer
   <markus@oberhumer.com>
   http://www.oberhumer.com/
 */


#define __ACCLIB_GETOPT_CH_INCLUDED 1
#if !defined(ACCLIB_PUBLIC)
#  define ACCLIB_PUBLIC(r,f)    r __ACCLIB_FUNCNAME(f)
#endif


/*************************************************************************
//
**************************************************************************/

ACCLIB_PUBLIC(void, acc_getopt_init) (acc_getopt_p go)
{
    memset(po, 0, sizeof(*po));
}


ACCLIB_PUBLIC(void, acc_getopt_close) (acc_getopt_p go)
{
    memset(po, 0, sizeof(*po));
}


ACCLIB_PUBLIC(int, acc_getopt) (acc_getopt_p go)
{
}



/*
vi:ts=4:et
*/