Loading...
Searching...
No Matches
result_output_types.h
1/*
2 * Copyright (C) 2021 HAW Hamburg
3 *
4 * This file is subject to the terms and conditions of the GNU Lesser
5 * General Public License v2.1. See the file LICENSE in the top level
6 * directory for more details.
7 */
8
9#pragma once
10
11#include "kernel_defines.h"
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
22#ifndef CONFIG_TURO_JSON_WHITESPACE_AFTER_SYMBOL
23#define CONFIG_TURO_JSON_WHITESPACE_AFTER_SYMBOL 1
24#endif
25
30typedef enum {
31 TURO_STATE_READY,
32 TURO_STATE_NEED_COMMA,
33} turo_state_t;
35
40struct turo {
41 turo_state_t state;
42};
43
44#ifdef __cplusplus
45}
46#endif
Common macros and compiler attributes/pragmas configuration.
turo type
turo_state_t state
current state