#include "Python.h"
#include "pycore_strhex.h"
#include "pycore_unicodeobject.h"
static PyObject *_Py_strhex_impl(const char* argbuf, const Py_ssize_t arglen,
PyObject* sep, int bytes_per_sep_group,
const int return_bytes)
{ … }
PyObject * _Py_strhex(const char* argbuf, const Py_ssize_t arglen)
{ … }
PyObject* _Py_strhex_bytes(const char* argbuf, const Py_ssize_t arglen)
{ … }
PyObject* _Py_strhex_with_sep(const char* argbuf, const Py_ssize_t arglen,
PyObject* sep, const int bytes_per_group)
{ … }
PyObject* _Py_strhex_bytes_with_sep(const char* argbuf, const Py_ssize_t arglen,
PyObject* sep, const int bytes_per_group)
{ … }