summaryrefslogtreecommitdiffstats
path: root/src/config.h
blob: e977cdcc8ef8e070240173dbeed988ad66079236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef CONFIG_H
#define CONFIG_H

#include <Python.h>

typedef struct Config Config;

Config *createConfig(const char *argv[], int argc);

PyObject *_object(Config*);

#endif