run clang-format
This commit is contained in:
parent
71385a1fd5
commit
80d2ed5180
4 changed files with 28 additions and 19 deletions
16
yaml.h
16
yaml.h
|
|
@ -4,13 +4,13 @@
|
|||
#include <stdlib.h>
|
||||
|
||||
typedef enum {
|
||||
YAML_TYPE_STRING, /**< A value that represents a string. */
|
||||
YAML_TYPE_NUMBER, /**< A value that represents a number. */
|
||||
YAML_TYPE_OBJECT, /**< A value that represents an object. */
|
||||
YAML_TYPE_ARRAY, /**< A value that represents an array. */
|
||||
YAML_TYPE_TRUE, /**< A value that represents true. */
|
||||
YAML_TYPE_FALSE, /**< A value that represents false. */
|
||||
YAML_TYPE_NULL, /**< A value that represents null. */
|
||||
YAML_TYPE_STRING, /**< A value that represents a string. */
|
||||
YAML_TYPE_NUMBER, /**< A value that represents a number. */
|
||||
YAML_TYPE_OBJECT, /**< A value that represents an object. */
|
||||
YAML_TYPE_ARRAY, /**< A value that represents an array. */
|
||||
YAML_TYPE_TRUE, /**< A value that represents true. */
|
||||
YAML_TYPE_FALSE, /**< A value that represents false. */
|
||||
YAML_TYPE_NULL, /**< A value that represents null. */
|
||||
} yaml_type_t;
|
||||
|
||||
typedef struct {
|
||||
|
|
@ -42,7 +42,7 @@ typedef struct {
|
|||
|
||||
typedef struct yaml_array_element_s {
|
||||
yaml_value_t *value;
|
||||
|
||||
|
||||
struct yaml_array_element_s *next;
|
||||
} yaml_array_element_t;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue