This repository was archived by the owner on Feb 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathtable_array.h
More file actions
59 lines (49 loc) · 1.29 KB
/
table_array.h
File metadata and controls
59 lines (49 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/**
* @file table_array.c
*
* @brief Contains functionaly for handling table arrays on reading.
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*/
#ifndef ELEKTRA_PLUGIN_TOML_TABLE_ARRAY_H
#define ELEKTRA_PLUGIN_TOML_TABLE_ARRAY_H
#include <kdb.h>
#include <stddef.h>
typedef struct _TableArrayList
{
Key * key;
char * keyStr;
size_t currIndex;
struct _TableArrayList * next;
} TableArrayList;
/*
* @brief Pushes a new table array entry onto the list.
*
* @param top The current top element of the list.
* @param key Table array key to push onto the list.
*
* @retval Pointer New table array top.
* @retval NULL On error.
*/
TableArrayList * pushTableArray (TableArrayList * top, Key * key);
/*
* @brief Pops a table array entry from the list.
*
* Frees the top element.
*
* @param top The current top element of the list.
*
* @retval Pointer New table array top.
* @retval NULL On error.
*/
TableArrayList * popTableArray (TableArrayList * top);
/*
* @brief Build a key name, bases on the current table array list.
*
* @param ta TableArray list.
*
* @retval Pointer Key with a keyname derived from the table array list.
* @retval NULL On error.
*/
Key * buildTableArrayKeyName (const TableArrayList * ta);
#endif // ELEKTRA_PLUGIN_TOML_TABLE_ARRAY_LIST_H