Add comments regarding use of atoi()
[eleutheria.git] / proplib / prop_array2.c
blob2d0b604e21f598145ea284b09a590f0461462521
1 /*
2 * Compile with:
3 * gcc prop_array2.c -o prop_array2 -lprop -Wall -W -Wextra -ansi -pedantic
4 */
6 #include <err.h>
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <prop/proplib.h>
11 int main(int argc, char *argv[])
13 prop_array_t pa;
14 prop_object_t po;
15 prop_object_iterator_t pit;
16 unsigned int i;
17 const char *s;
19 /* No effect in NetBSD, but increases portability */
20 setprogname(argv[0]);
22 /* Check argument count */
23 if (argc != 2) {
24 fprintf(stderr, "Usage: %s <data.xml>\n", getprogname());
25 exit(EXIT_FAILURE);
28 /* Read array contents from external XML file */
29 pa = prop_array_internalize_from_file(argv[1]);
30 if (pa == NULL)
31 errx(EXIT_FAILURE, "prop_array_internalize_from_file()");
33 /* Skim through every item of the array */
34 for (i = 0; i < prop_array_count(pa); i++) {
35 s = prop_string_cstring_nocopy(prop_array_get(pa, i));
36 printf("%s\n", s);
40 * We will now iterate through the items of the array,
41 * but this time we will exploit a prop_array_iterator_t
43 pit = prop_array_iterator(pa);
44 if (pit == NULL) {
45 prop_object_release(pa);
46 errx(EXIT_FAILURE, "prop_array_iterator()");
49 /* Traverse */
50 while((po = prop_object_iterator_next(pit)) != NULL) {
51 s = prop_string_cstring_nocopy(po);
52 printf("%s\n", s);
55 /* Release objects */
56 prop_object_release(pa);
57 prop_object_iterator_release(pit);
59 return EXIT_SUCCESS;