Revert "update"

This reverts commit dbafdbeea5.
This commit is contained in:
2024-01-18 17:24:01 +01:00
parent dbafdbeea5
commit 5039f95153
22 changed files with 1464 additions and 8 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_ */