Files
c-prime/source/tools.h

24 lines
384 B
C
Raw Normal View History

2025-11-17 10:28:09 +01:00
#ifndef _tools
#define _tools
#include <stdlib.h>
#include <array.h>
#include <text.h>
#include <string.h>
#include <variable.h>
char * tools_findDatatype( struct array * variableDeclarationParts );
int tools_findArgumentCloseIndexReverse( char * body, int fromKey );
char * tools_removePointerSymbolFromDatatype( char * returnType, int * leftSideIsPointer );
#endif