property.c (50dfa596d3f83c7de5fde6b5e54b8a8b9484dcb6) | property.c (8b1ef8d4645b65a6acfa34d3c1f460805e737a98) |
---|---|
1/* 2 * 3 * Simple property list handling code. 4 * 5 * Copyright (c) 1998 6 * Jordan Hubbard. All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 17 unchanged lines hidden (view full) --- 26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 * SUCH DAMAGE. 30 * 31 */ 32 33#include <ctype.h> | 1/* 2 * 3 * Simple property list handling code. 4 * 5 * Copyright (c) 1998 6 * Jordan Hubbard. All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 17 unchanged lines hidden (view full) --- 26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 * SUCH DAMAGE. 30 * 31 */ 32 33#include <ctype.h> |
34#include <stdio.h> | 34#include <unistd.h> |
35#include <stdlib.h> | 35#include <stdlib.h> |
36#include <stdio.h> |
|
36#include <string.h> 37#include <sys/types.h> 38#include <libutil.h> 39 40#define MAX_NAME 64 41#define MAX_VALUE 512 42 43static properties --- 173 unchanged lines hidden --- | 37#include <string.h> 38#include <sys/types.h> 39#include <libutil.h> 40 41#define MAX_NAME 64 42#define MAX_VALUE 512 43 44static properties --- 173 unchanged lines hidden --- |