You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
335 B

4 years ago
  1. #ifndef _MULTIDICT_ITER_H
  2. #define _MULTIDICT_ITER_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include "Python.h"
  7. PyObject *multidict_items_iter_new(PyObject *impl);
  8. PyObject *multidict_keys_iter_new(PyObject *impl);
  9. PyObject *multidict_values_iter_new(PyObject *impl);
  10. int multidict_iter_init();
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif