You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
337 B
18 lines
337 B
#pragma once
|
|
#include <stdint.h>
|
|
|
|
typedef struct DataNode DataNode;
|
|
|
|
DataNode* splitData(char *buffer, uint32_t bufferSize);
|
|
|
|
void freeDataNodes(DataNode *head);
|
|
|
|
void printDataList(DataNode *head);
|
|
|
|
int getDataNodeCount(DataNode *head);
|
|
|
|
/**
|
|
* @param index is form 1 to n
|
|
*/
|
|
const char* getDataNodeByIndex(DataNode *head, int index);
|