blob: 49df83ce4604b3f270ba2351d26da225180d89b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __PYXMLSEC_UTILS_H__
#define __PYXMLSEC_UTILS_H__
#undef _POSIX_C_SOURCE
#include <Python.h>
extern PyObject *xmlsec_error;
int CheckArgs(PyObject *args, char *format);
#endif /* __PYXMLSEC_UTILS_H__ */
|