Tag
Hash :
dac0d8aa
Author :
Thomas de Grivel
Date :
2023-11-03T13:59:57
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
/* c3
* Copyright 2022,2023 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
#include <assert.h>
#include <err.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include "arg.h"
#include "binding.h"
#include "buf.h"
#include "buf_parse.h"
#include "fn.h"
#include "fn_clause.h"
#include "list.h"
void fn_clean (s_fn *fn)
{
assert(fn);
fn_clause_delete_all(fn->clauses);
}
s_fn * fn_copy (const s_fn *src, s_fn *dest)
{
fn_clause_copy(src->clauses, &dest->clauses);
dest->macro = src->macro;
dest->special_operator = src->special_operator;
return dest;
}
void fn_delete (s_fn *fn)
{
fn_clean(fn);
free(fn);
}
s_fn * fn_init (s_fn *fn)
{
assert(fn);
bzero(fn, sizeof(s_fn));
return fn;
}
s_fn * fn_init_1 (s_fn *fn, s8 *p)
{
s_buf buf;
sw r;
assert(fn);
buf_init_1(&buf, p);
if ((r = buf_parse_fn(&buf, fn)) != (sw) strlen(p))
errx(1, "fn_init_1: buf_parse_fn(%s) %ld != %lu", p, r, strlen(p));
buf_clean(&buf);
return fn;
}
s_fn * fn_new (void)
{
s_fn *fn;
if (! (fn = calloc(1, sizeof(s_fn))))
err(1, "fn_new: calloc");
fn_init(fn);
return fn;
}
s_fn * fn_new_copy (const s_fn *fn)
{
s_fn *tmp;
assert(fn);
tmp = fn_new();
fn_copy(fn, tmp);
return tmp;
}