2011-12-18 14:14:16 -05:00
|
|
|
/*--------------------------
|
|
|
|
|
* common utility functions
|
|
|
|
|
*--------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef PLPY_UTIL_H
|
|
|
|
|
#define PLPY_UTIL_H
|
|
|
|
|
|
2011-12-29 15:55:49 -05:00
|
|
|
extern void *PLy_malloc(size_t bytes);
|
|
|
|
|
extern void *PLy_malloc0(size_t bytes);
|
|
|
|
|
extern char *PLy_strdup(const char *str);
|
|
|
|
|
extern void PLy_free(void *ptr);
|
2011-12-18 14:14:16 -05:00
|
|
|
|
|
|
|
|
extern PyObject *PLyUnicode_Bytes(PyObject *unicode);
|
|
|
|
|
extern char *PLyUnicode_AsString(PyObject *unicode);
|
|
|
|
|
|
|
|
|
|
#if PY_MAJOR_VERSION >= 3
|
|
|
|
|
extern PyObject *PLyUnicode_FromString(const char *s);
|
2015-04-26 10:33:14 -04:00
|
|
|
extern PyObject *PLyUnicode_FromStringAndSize(const char *s, Py_ssize_t size);
|
2011-12-18 14:14:16 -05:00
|
|
|
#endif
|
|
|
|
|
|
2012-06-10 15:20:04 -04:00
|
|
|
#endif /* PLPY_UTIL_H */
|