This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
haas:fall2014:data:projects:node1 [2014/09/21 21:55] – [Submission Criteria] wedge | haas:fall2014:data:projects:node1 [2014/09/21 22:02] (current) – [node library] wedge | ||
---|---|---|---|
Line 204: | Line 204: | ||
None of these files denote an entire runnable program. These are merely standalone functions. The various programs under the **testing/ | None of these files denote an entire runnable program. These are merely standalone functions. The various programs under the **testing/ | ||
+ | You will also notice there are function prototypes for these node library functions in the **node.h** header file, located in the **inc/** subdirectory, | ||
+ | |||
+ | The prototypes (taken right from **inc/ | ||
+ | |||
+ | <code c> | ||
+ | Node *mknode(int | ||
+ | Node *rmnode(Node *); // deallocate node | ||
+ | Node *cpnode(Node *); // duplicate node | ||
+ | </ | ||
+ | |||
+ | This is your API for the node library. In order to use the node library three things need to happen: | ||
+ | |||
+ | * you must **#include " | ||
+ | * you must link against **lib/ | ||
+ | * you must call the functions providing the appropriate arguments and handling the return values | ||
+ | |||
+ | In general, this is no different than what you've already done, each and every time you've used **printf()**, | ||
+ | |||
+ | The compiler does a lot of behind-the-scenes work (linking against the C standard library by default, so all you have to do is include **stdio.h** and/or **stdlib.h**). | ||
+ | |||
+ | If you've ever played with the math library, you've had a slightly closer look, as such code wouldn' | ||
+ | |||
+ | Again, same details apply here, only the Makefile system automates the library linking. All we have to do is **# | ||
====Node library unit tests==== | ====Node library unit tests==== | ||
In **testing/ | In **testing/ |