Consistently use "superuser" instead of "super user"
[pgsql.git] / src / pl / plpython / plpy_util.h
blobc9ba7edc0ec065d0661d40d919329f060421ee51
1 /*--------------------------
2 * common utility functions
3 *--------------------------
4 */
6 #ifndef PLPY_UTIL_H
7 #define PLPY_UTIL_H
9 #include "plpython.h"
11 extern PyObject *PLyUnicode_Bytes(PyObject *unicode);
12 extern char *PLyUnicode_AsString(PyObject *unicode);
14 #if PY_MAJOR_VERSION >= 3
15 extern PyObject *PLyUnicode_FromString(const char *s);
16 extern PyObject *PLyUnicode_FromStringAndSize(const char *s, Py_ssize_t size);
17 #endif
19 #endif /* PLPY_UTIL_H */