-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanf.h
More file actions
53 lines (45 loc) · 1.48 KB
/
anf.h
File metadata and controls
53 lines (45 loc) · 1.48 KB
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
47
48
49
50
51
52
53
/*
* Copyright (C) 2014 AliReza Forouzandeh Nezhad (aka alireza7991)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#define VERSION "1.0"
#define ENOSWITCH 1
#define EINVALIDSWITCH 2
#define EOPENFAILED 4
#define EWRITEFAILED 6
typedef struct {
unsigned c;
char **vec;
} anf_stat;
char *getval(char *);
char *getkey(char *);
unsigned isparam(char *);
void print_usage(anf_stat *);
void hwset(char *,char *);
void helloworld(anf_stat *); // declare new module
char *strdup(char *);
#define SWITCH(x,y) {x,&y},
#ifndef EXCLUDE_ANF_EXT
struct anf_ext_ {
unsigned char s;
void (*func)(anf_stat *);
} anf_ext [] = {
// Add new switches here
// first argument is the character of switch and second argument is the function which handles the switch's calls
SWITCH('h',print_usage)
SWITCH('H',helloworld) // attach it to a switch !
};
#endif