When doing a linked list of chars with just a single character do you think it's better to use pointers in your struct like this?
Typedef struct String_Node
{
Struct String_Node* next;
Struct String_Node* prev;
int id;
char* c;
} String_Node_t;
Or better to not use a pointer with the char like this?
Typedef struct String_Node
{
Struct String_Node* next;
Struct String_Node* prev;
int id;
char c;
} String_Node_t;