source: git/Singular/mpsr_Tok.h @ bee06d

spielwiese
Last change on this file since bee06d was 341696, checked in by Hans Schönemann <hannes@…>, 14 years ago
Adding Id property to all files git-svn-id: file:///usr/local/Singular/svn/trunk@12231 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 955 bytes
Line 
1/****************************************
2*  Computer Algebra System SINGULAR     *
3****************************************/
4/* $Id$ */
5
6/***************************************************************
7 *
8 * File:       mpsr_Tok.h
9 * Purpose:    Routines which realize Singular CMD <-> MP (dict, cop) mappings
10 * Author:     Olaf Bachmann (1/97)
11 *
12 * Change History (most recent first):
13 *
14 ***************************************************************/
15#ifndef __MPSR_TOK_H__
16#define __MPSR_TOK_H__
17#include"mpsr.h"
18
19extern mpsr_Status_t mpsr_tok2mp(short tok, MP_DictTag_t *dict,
20                               MP_Common_t *cop);
21
22extern mpsr_Status_t mpsr_mp2tok(MP_DictTag_t dict, MP_Common_t cop,
23                               short *o_tok);
24
25extern MP_Common_t mpsr_ord2mp(int sr_ord);
26extern short mpsr_mp2ord(MP_Common_t mp_ord);
27
28#define MP_AnnotSingularProcDef         1
29#define MP_AnnotSingularPackageType     2
30
31#endif  // __MPSR_TOK_H__
Note: See TracBrowser for help on using the repository browser.