Staging
v0.5.1
Revision de232f364b5cd733be9689466740864bb0f2992e authored by Serhiy Storchaka on 10 July 2016, 18:34:50 UTC, committed by Serhiy Storchaka on 10 July 2016, 18:34:50 UTC
2 parent s 763e04b + c95300a
Raw File
pystrhex.h
#ifndef Py_STRHEX_H
#define Py_STRHEX_H

#ifdef __cplusplus
extern "C" {
#endif

/* Returns a str() containing the hex representation of argbuf. */
PyAPI_FUNC(PyObject*) _Py_strhex(const char* argbuf, const Py_ssize_t arglen);
/* Returns a bytes() containing the ASCII hex representation of argbuf. */
PyAPI_FUNC(PyObject*) _Py_strhex_bytes(const char* argbuf, const Py_ssize_t arglen);

#ifdef __cplusplus
}
#endif

#endif /* !Py_STRHEX_H */
back to top