Annotation of freem/src/mref.h, revision 1.1
1.1 ! snw 1: /*
! 2: * *
! 3: * * *
! 4: * * *
! 5: * ***************
! 6: * * * * *
! 7: * * MUMPS *
! 8: * * * * *
! 9: * ***************
! 10: * * *
! 11: * * *
! 12: * *
! 13: *
! 14: * mref.h
! 15: * supporting functions for handling freem_ref_t structures
! 16: *
! 17: *
! 18: * Author: Serena Willis <jpw@coherent-logic.com>
! 19: * Copyright (C) 1998 MUG Deutschland
! 20: * Copyright (C) 2020 Coherent Logic Development LLC
! 21: *
! 22: *
! 23: * This file is part of FreeM.
! 24: *
! 25: * FreeM is free software: you can redistribute it and/or modify
! 26: * it under the terms of the GNU Affero Public License as published by
! 27: * the Free Software Foundation, either version 3 of the License, or
! 28: * (at your option) any later version.
! 29: *
! 30: * FreeM is distributed in the hope that it will be useful,
! 31: * but WITHOUT ANY WARRANTY; without even the implied warranty of
! 32: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
! 33: * GNU Affero Public License for more details.
! 34: *
! 35: * You should have received a copy of the GNU Affero Public License
! 36: * along with FreeM. If not, see <https://www.gnu.org/licenses/>.
! 37: *
! 38: **/
! 39:
! 40: #if !defined(_MREF_H)
! 41: #define _MREF_H
! 42:
! 43: #include "freem.h"
! 44:
! 45: extern freem_ref_t *mref_init (freem_ref_t *ref, short ref_type, char *name);
! 46: extern char *mref_get_subscript (freem_ref_t *ref, int index);
! 47: extern freem_ref_t *mref_set_subscript (freem_ref_t *ref, int index, char *value);
! 48: extern void mref_to_internal_prealloc (char *res, freem_ref_t *ref);
! 49: extern char *mref_to_internal (freem_ref_t *ref);
! 50: extern freem_ref_t *internal_to_mref (freem_ref_t *ref, char *key);
! 51: extern void mref_to_external (freem_ref_t *ref, char *buf);
! 52: extern short mref_is_descendant(freem_ref_t *a, freem_ref_t *b);
! 53: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>