You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-05 04:50:35 +03:00
21 lines
343 B
C
21 lines
343 B
C
#ifndef SNMP_PARSE_ARGS_H
|
|
#define SNMP_PARSE_ARGS_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int
|
|
snmp_parse_args(int argc, char **argv, netsnmp_session *session,
|
|
const char *localOpts, void (*proc)(int, char *const *, int));
|
|
|
|
void
|
|
snmp_parse_args_descriptions(FILE *);
|
|
|
|
void
|
|
snmp_parse_args_usage(FILE *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|