X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=src%2Ftypes%2Fdecl_abi.h;h=d6017926811eb31bbf37a0587a0942bee4fbba1d;hp=48731a3d2632d705dced4311734e7167c865dc9e;hb=02e801eabbe26a129ea05e6723c94e10bb653dab;hpb=5359ad5c181e5772f350fe1cba060cbed3a05b91 diff --git a/src/types/decl_abi.h b/src/types/decl_abi.h index 48731a3..d601792 100644 --- a/src/types/decl_abi.h +++ b/src/types/decl_abi.h @@ -1,23 +1,42 @@ -#ifndef _PSI_TYPES_DECL_ABI_H -#define _PSI_TYPES_DECL_ABI_H +/******************************************************************************* + Copyright (c) 2016, Michael Wallner . + All rights reserved. -typedef struct decl_abi { + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*******************************************************************************/ + +#ifndef PSI_TYPES_DECL_ABI_H +#define PSI_TYPES_DECL_ABI_H + +struct psi_token; +struct psi_data; + +struct psi_decl_abi { struct psi_token *token; char *convention; -} decl_abi; - -static inline decl_abi *init_decl_abi(const char *convention) { - decl_abi *abi = calloc(1, sizeof(*abi)); - abi->convention = strdup(convention); - return abi; -} - -static inline void free_decl_abi(decl_abi *abi) { - if (abi->token) { - free(abi->token); - } - free(abi->convention); - free(abi); -} +}; + +struct psi_decl_abi *psi_decl_abi_init(const char *convention); +void psi_decl_abi_free(struct psi_decl_abi **abi_ptr); +void psi_decl_abi_dump(int fd, struct psi_decl_abi *abi); +bool psi_decl_abi_validate(struct psi_data *data, struct psi_decl_abi *abi); #endif