Hi I am trying to use some pure C library in an iOS app, however I have no clue how to call and pass the parameters. Here are 2 functions, Node is a struct:
Node *parse(FILE *f);
void add_subnode(Node *t, Node *parent);
Can someone show me some sample code how to do it? Or point out to me some good books on this topic.
Thanks Ray