added big int lib

This commit is contained in:
nils polek
2024-01-15 16:28:41 +00:00
parent 3935d2778b
commit ac57431ac4
19 changed files with 2615 additions and 2 deletions

15
bigint/src/support.h Normal file
View File

@@ -0,0 +1,15 @@
/*
* support.h -- object representation and support functions
*/
#ifndef _SUPPORT_H_
#define _SUPPORT_H_
/* support functions */
void fatalError(char *msg); /* print a message and exit */
void * newPrimObject(int dataSize); /* create a new primitive object */
void * getPrimObjectDataPointer(void * primObject);
#endif /* _SUPPORT_H_ */