@@ -1,13 +1,13 @@
#pragma once
-#ifdef __cplusplus
-extern "C" {
-#endif
-
#include <stdbool.h>
#include "pocketpy/objects/pyvar.h"
#include "pocketpy/common/vector.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/** @brief `pkpy_Dict` is the Dict type in Python */
typedef struct {
int count; /** number of elements in the dictionary */
@@ -1,12 +1,12 @@
+#include <stdbool.h>
+#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
-#include <stdbool.h>
-#include <stdint.h>
/**
* @brief A python value in pocketpy.
*/
#include "pocketpy/common/str.h"
enum CompileMode { EXEC_MODE, EVAL_MODE, REPL_MODE, JSON_MODE, CELL_MODE };
struct pkpy_SourceData {