run clang-format

This commit is contained in:
Joshua Vega 2026-01-24 12:48:05 -05:00
parent 71385a1fd5
commit 80d2ed5180
Signed by: jsvcycling
GPG key ID: E3DD60C9AC7DEF79
4 changed files with 28 additions and 19 deletions

16
yaml.h
View file

@ -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;