text/plain
•
917 B
•
28 lines
/* Nujel - Copyright (C) 2020-2022 - Benjamin Vincent Schulenburg
* This project uses the MIT license, a copy should be included under /LICENSE */
#ifndef NUJEL_AMALGAMATION
#include "nujel-private.h"
#endif
/* These shouldn't be exported since we should only really call into
| lOperationsBase and determine which operations need addition in there.
*/
void lOperationsArithmetic (lClosure *c);
void lOperationsArray (lClosure *c);
void lOperationsBuffer (lClosure *c);
void lOperationsBytecode (lClosure *c);
void lOperationsCore (lClosure *c);
void lOperationsSpecial (lClosure *c);
void lOperationsString (lClosure *c);
void lOperationsTree (lClosure *c);
void lOperationsBase(lClosure *c){
lOperationsArithmetic(c);
lOperationsBuffer(c);
lOperationsArray(c);
lOperationsBytecode(c);
lOperationsCore(c);
lOperationsSpecial(c);
lOperationsString(c);
lOperationsTree(c);
}