types.h (f2e20987) types.h (9742fdb4)
1/* $NetBSD: types.h,v 1.3 2019/01/09 16:55:18 christos Exp $ */
1/* $NetBSD: types.h,v 1.4 2020/05/24 19:46:28 christos Exp $ */
2
3/*
4 * Portions Copyright (C) Internet Systems Consortium, Inc. ("ISC")
5 *
6 * This Source Code Form is subject to the terms of the Mozilla Public
7 * License, v. 2.0. If a copy of the MPL was not distributed with this
8 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 *

--- 10 unchanged lines hidden (view full) ---

20 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY
22 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
23 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
24 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
25 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
26 */
27
2
3/*
4 * Portions Copyright (C) Internet Systems Consortium, Inc. ("ISC")
5 *
6 * This Source Code Form is subject to the terms of the Mozilla Public
7 * License, v. 2.0. If a copy of the MPL was not distributed with this
8 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 *

--- 10 unchanged lines hidden (view full) ---

20 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
21 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY
22 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
23 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
24 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
25 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
26 */
27
28
29#ifndef ISCCC_TYPES_H
30#define ISCCC_TYPES_H 1
31
32/*! \file isccc/types.h */
33
34#include <inttypes.h>
35
36#include <isc/result.h>

--- 5 unchanged lines hidden (view full) ---

42typedef struct isccc_sexpr isccc_sexpr_t;
43/*% isccc_dottedpair_t typedef */
44typedef struct isccc_dottedpair isccc_dottedpair_t;
45/*% isccc_symtab_t typedef */
46typedef struct isccc_symtab isccc_symtab_t;
47
48/*% iscc region structure */
49typedef struct isccc_region {
28#ifndef ISCCC_TYPES_H
29#define ISCCC_TYPES_H 1
30
31/*! \file isccc/types.h */
32
33#include <inttypes.h>
34
35#include <isc/result.h>

--- 5 unchanged lines hidden (view full) ---

41typedef struct isccc_sexpr isccc_sexpr_t;
42/*% isccc_dottedpair_t typedef */
43typedef struct isccc_dottedpair isccc_dottedpair_t;
44/*% isccc_symtab_t typedef */
45typedef struct isccc_symtab isccc_symtab_t;
46
47/*% iscc region structure */
48typedef struct isccc_region {
50 unsigned char * rstart;
51 unsigned char * rend;
49 unsigned char *rstart;
50 unsigned char *rend;
52} isccc_region_t;
53
54#endif /* ISCCC_TYPES_H */
51} isccc_region_t;
52
53#endif /* ISCCC_TYPES_H */