arguments.h

Tue, 02 Oct 2012 10:49:25 +0200

author
Mike Becker <universe@uap-core.de>
date
Tue, 02 Oct 2012 10:49:25 +0200
changeset 33
1a2d7298bc82
parent 30
d642fdb6745e
permissions
-rw-r--r--

added multi-directory support

fixed parser bug in directory parser locking argument number 1024

fixed freed memory access on settings structure

/*
 * arguments.h
 *
 *  Created on: 15.09.2011
 *      Author: Mike
 */

#ifndef ARGUMENTS_H_
#define ARGUMENTS_H_

#include "stdinc.h"
#include "string_list.h"

#ifdef _cplusplus
extern "C" {
#endif

int checkArgument(const char*, const char*);
bool checkParamOpt(int*);
bool registerArgument(int*, int);
void parseCSL(char*, string_list_t*);

#ifdef _cplusplus
}
#endif

#endif /* ARGUMENTS_H_ */

mercurial