mirror of
https://github.com/rvtr/twl_wrapsdk.git
synced 2025-10-31 06:11:10 -04:00
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/twl_wrapsdk/trunk@161 4ee2a332-4b2b-5046-8439-1ba90f034370
22 lines
289 B
C
22 lines
289 B
C
|
|
#ifndef __SEARCH_ARG__
|
|
#define __SEARCH_ARG__
|
|
|
|
|
|
|
|
typedef struct
|
|
{
|
|
char* opt[7];
|
|
char* opt_arg[7];
|
|
char* arg[7];
|
|
int opt_num;
|
|
int arg_num;
|
|
}SAArgList;
|
|
|
|
|
|
void SA_searchopt( SAArgList* ArgList, int argc, char* argv[]);
|
|
|
|
|
|
|
|
#endif /*__SEARCH_ARG__*/
|