A
albert_reade
Could someone give me a quick algorithm or c code help that searchs a
linked list and updates the value field of a linked list with the
following structure.
struct Val
{
char type;
int length;
char value[256];
} Values[450];
struct Obj
{
struct Obj *pre;
struct Val *p_value;
struct Obj *next;
} Objects[450], *Chocolate, *Donuts, *HardCandy;
Thanks for the help!!
linked list and updates the value field of a linked list with the
following structure.
struct Val
{
char type;
int length;
char value[256];
} Values[450];
struct Obj
{
struct Obj *pre;
struct Val *p_value;
struct Obj *next;
} Objects[450], *Chocolate, *Donuts, *HardCandy;
Thanks for the help!!