Created
October 25, 2010 01:24
-
-
Save od0x0/644246 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AEArray(int) ints; | |
AEArrayInit(&ints); | |
AEArrayAdd(&ints, 1); | |
AEArrayAdd(&ints, 2); | |
AEArrayAdd(&ints, 3); | |
for(size_t i=0; i<AEArrayLength(&ints); i++) | |
printf("At Index %lu, we have %i\n", (unsigned long)i, AEArrayAsCArray(&ints)[i]); | |
AEArrayDeinit(&ints); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment