File: builtin.h

package info (click to toggle)
saml 970418-3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 1,204 kB
  • ctags: 1,701
  • sloc: ansic: 17,182; sh: 2,583; yacc: 497; perl: 264; makefile: 250; python: 242
file content (29 lines) | stat: -rw-r--r-- 982 bytes parent folder | download | duplicates (3)
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
/*
 * Copyright 1995,96 Thierry Bousch
 * Licensed under the Gnu Public License, Version 2
 *
 * $Id: builtin.h,v 1.5 1996/08/12 21:46:26 bousch Exp $
 *
 * Initialization routines, used by builtin.c
 */

#ifndef _SAML_BUILTIN_H
#define _SAML_BUILTIN_H

void init_MathType_Void(void);		/* Void.c */
void init_MathType_Literal(void);	/* Literal.c */
void init_MathType_Mint(void);		/* Mint.c */
void init_MathType_Complex(void);	/* Complex.c */
void init_MathType_Cyclic(void);	/* Cyclic.c */
void init_MathType_Integer(void);	/* Integer.c */
void init_MathType_Float(void);		/* Float.c */
void init_MathType_Rational(void);	/* Ratio.c */
void init_MathType_Monomial(void);	/* Mono.c */
void init_MathType_Polynomial(void);	/* Poly.c */
void init_MathType_Upoly(void);		/* Upoly.c */
void init_MathType_Apoly(void);		/* Apoly.c */
void init_MathType_Algext(void);	/* Algext.c */
void init_MathType_Matrix(void);	/* Matrix.c */
void init_MathType_Tensor(void);	/* Tensor.c */

#endif