X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=src%2Ftypes%2Fset_stmt.h;h=8c96d43377d5eb860c3921910c03dc55aa892ef1;hp=360b3244a13f76a5c90f1dc244ff14edab2b7868;hb=2f5af21b263403997e154658635d6b6e6eaab453;hpb=898c6dac30d12d7fe56662d66a8e73c340926d64 diff --git a/src/types/set_stmt.h b/src/types/set_stmt.h index 360b324..8c96d43 100644 --- a/src/types/set_stmt.h +++ b/src/types/set_stmt.h @@ -1,5 +1,34 @@ -#ifndef _PSI_TYPES_SET_STMT_H -#define _PSI_TYPES_SET_STMT_H +/******************************************************************************* + Copyright (c) 2016, Michael Wallner . + All rights reserved. + + 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_SET_STMT_H +#define PSI_TYPES_SET_STMT_H + +#include "impl_var.h" +#include "impl_arg.h" +#include "set_value.h" typedef struct set_stmt { impl_var *var; @@ -7,17 +36,13 @@ typedef struct set_stmt { impl_arg *arg; } set_stmt; -static inline set_stmt *init_set_stmt(impl_var *var, set_value *val) { - set_stmt *set = calloc(1, sizeof(*set)); - set->var = var; - set->val = val; - return set; -} - -static inline void free_set_stmt(set_stmt *set) { - free_impl_var(set->var); - free_set_value(set->val); - free(set); -} +set_stmt *init_set_stmt(impl_var *var, set_value *val); +void free_set_stmt(set_stmt *set); +void dump_set_stmt(int fd, set_stmt *set); + +struct psi_data; +struct impl; + +int validate_set_stmts(struct psi_data *data, struct impl *impl); #endif