Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line | 
|---|---|---|---|
| 26 | pmbaty | 1 | /* ACC -- Automatic Compiler Configuration | 
| 2 | |||
| 3 | Copyright (C) 1996-2004 Markus Franz Xaver Johannes Oberhumer | ||
| 4 | All Rights Reserved. | ||
| 5 | |||
| 6 | This software is a copyrighted work licensed under the terms of | ||
| 7 | the GNU General Public License. Please consult the file "ACC_LICENSE" | ||
| 8 | for details. | ||
| 9 | |||
| 10 | Markus F.X.J. Oberhumer | ||
| 11 | <markus@oberhumer.com> | ||
| 12 | http://www.oberhumer.com/ | ||
| 13 | */ | ||
| 14 | |||
| 15 | |||
| 16 | #define __ACCLIB_GETOPT_CH_INCLUDED 1 | ||
| 17 | #if !defined(ACCLIB_PUBLIC) | ||
| 18 | # define ACCLIB_PUBLIC(r,f) r __ACCLIB_FUNCNAME(f) | ||
| 19 | #endif | ||
| 20 | |||
| 21 | |||
| 22 | /************************************************************************* | ||
| 23 | // | ||
| 24 | **************************************************************************/ | ||
| 25 | |||
| 26 | ACCLIB_PUBLIC(void, acc_getopt_init) (acc_getopt_p go) | ||
| 27 | { | ||
| 28 | memset(po, 0, sizeof(*po)); | ||
| 29 | } | ||
| 30 | |||
| 31 | |||
| 32 | ACCLIB_PUBLIC(void, acc_getopt_close) (acc_getopt_p go) | ||
| 33 | { | ||
| 34 | memset(po, 0, sizeof(*po)); | ||
| 35 | } | ||
| 36 | |||
| 37 | |||
| 38 | ACCLIB_PUBLIC(int, acc_getopt) (acc_getopt_p go) | ||
| 39 | { | ||
| 40 | } | ||
| 41 | |||
| 42 | |||
| 43 | |||
| 44 | /* | ||
| 45 | vi:ts=4:et | ||
| 46 | */ |