source: git/Singular/ipconv.h @ 72df18

spielwiese
Last change on this file since 72df18 was 0deadb, checked in by Hans Schoenemann <hannes@…>, 6 years ago
fix: less dep. on Singular/table.h
  • Property mode set to 100644
File size: 555 bytes
Line 
1#ifndef IPCONVERT_H
2#define IPCONVERT_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT: interpreter: converting types
8*/
9#include "kernel/structs.h"
10
11extern const struct sConvertTypes dConvertTypes[];
12int iiTestConvert (int inputType, int outputType, const struct sConvertTypes *dCT=dConvertTypes);
13BOOLEAN iiConvert (int inputType, int outputType, int index,
14                   leftv input, leftv output, const struct sConvertTypes *dCT=dConvertTypes);
15#endif
16
Note: See TracBrowser for help on using the repository browser.