[BACK]Return to oxmaple.h CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_maple

Annotation of OpenXM/src/ox_maple/oxmaple.h, Revision 1.1

1.1     ! iwane       1: /* $OpenXM$ */
        !             2: #ifndef __OX_MAPLE_H__
        !             3: #define __OX_MAPLE_H__
        !             4:
        !             5:
        !             6: #include "ox_toolkit.h"
        !             7: #include "oxstack.h"
        !             8: #include "maplec.h"
        !             9:
        !            10: /*=====================================================*
        !            11:  * oxmaple.c
        !            12:  *=====================================================*/
        !            13: void oxmpl_executeStringParser(char *);
        !            14:
        !            15: int    oxmpl_init(int argc, char *argv[]);
        !            16:
        !            17: oxstack_node *oxmpl_add        (oxstack_node **, int );
        !            18: oxstack_node *oxmpl_whattype   (oxstack_node **, int );
        !            19: oxstack_node *oxmpl_sleep      (oxstack_node **, int );
        !            20: oxstack_node *oxmpl_func       (oxstack_node **, int );
        !            21: oxstack_node *oxmpl_cmo_int32  (oxstack_node **, int );
        !            22:
        !            23: cmo    *       convert_maple2cmo_(ALGEB);
        !            24: char   *       convert_maple2str_(ALGEB);
        !            25:
        !            26: void   oxmpl_debug_callfunc    (const char *, int, ...);
        !            27:
        !            28:
        !            29: /*=====================================================*
        !            30:  * m2c.c
        !            31:  *=====================================================*/
        !            32: cmo    *       convert_maple2cmo(MKernelVector, ALGEB);
        !            33: char   *       convert_maple2str(MKernelVector, ALGEB);
        !            34:
        !            35:
        !            36: /*=====================================================*
        !            37:  * c2m.c
        !            38:  *=====================================================*/
        !            39: ALGEB convert_cmo_to_maple(MKernelVector kv, cmo *, cmo_list *);
        !            40:
        !            41:
        !            42:
        !            43:
        !            44: #endif
        !            45:

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>