diff options
author | wukong <rebirthmonkey@gmail.com> | 2015-11-23 17:48:48 +0100 |
---|---|---|
committer | wukong <rebirthmonkey@gmail.com> | 2015-11-23 17:48:48 +0100 |
commit | fca74d4bc3569506a6659880a89aa009dc11f552 (patch) | |
tree | 4cefd06af989608ea8ebd3bc6306889e2a1ad175 /moon-abe/pbc-0.5.14/ecc/param.h | |
parent | 840ac3ebca7af381132bf7e93c1e4c0430d6b16a (diff) |
moon-abe cleanup
Change-Id: Ie1259856db03f0b9e80de3e967ec6bd1f03191b3
Diffstat (limited to 'moon-abe/pbc-0.5.14/ecc/param.h')
-rw-r--r-- | moon-abe/pbc-0.5.14/ecc/param.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/moon-abe/pbc-0.5.14/ecc/param.h b/moon-abe/pbc-0.5.14/ecc/param.h deleted file mode 100644 index 36cbdd36..00000000 --- a/moon-abe/pbc-0.5.14/ecc/param.h +++ /dev/null @@ -1,23 +0,0 @@ -// Input/output routines common to all pairing parameters. - -// Requires: -// * param.h -// * stdio.h -// * gmp.h -#ifndef __PARAM_UTILS_H__ -#define __PARAM_UTILS_H__ - -#pragma GCC visibility push(hidden) - -void param_out_type(FILE *stream, char *s); -void param_out_mpz(FILE *stream, char *s, mpz_t z); -void param_out_int(FILE *stream, char *s, int i); -// TODO: Replace with a stdarg function, e.g. -// err = lookup("ZZi", "p", "n", "l", p->p, p->n, &p->l); -struct symtab_s; // let "include/pbc.h" not include "misc/symtab.h" -int lookup_int(int *n, struct symtab_s *tab, const char *key); -int lookup_mpz(mpz_t z, struct symtab_s *tab, const char *key); - -#pragma GCC visibility pop - -#endif //__PARAM_UTILS_H__ |