26d4f90430
keys and returns them in an array. This effectively allows a caller to mutate a dictionary while iterating over it (really, you iterate over the array of keys instead of the dictionary itself). - Add a slew of utility functions that make it more convenient (in some circumstances, anyway) to get/set values in a dictionary.
10 lines
263 B
Makefile
10 lines
263 B
Makefile
# $NetBSD: Makefile.inc,v 1.5 2006/10/26 05:02:12 thorpej Exp $
|
|
|
|
.PATH: ${.PARSEDIR}
|
|
|
|
SRCS+= prop_array.c prop_bool.c prop_data.c prop_dictionary.c \
|
|
prop_dictionary_util.c prop_ingest.c prop_kern.c prop_number.c \
|
|
prop_object.c prop_string.c
|
|
|
|
SRCS+= prop_rb.c
|