Files
c-prime/source/argument.h

27 lines
393 B
C
Raw Normal View History

2025-11-17 10:28:09 +01:00
#ifndef _argument
#define _argument
#include "text.h"
#include "class.h"
#include "array.h"
#include "text.h"
#include "variable.h"
#include "string.h"
#include <stdint.h>
struct array * argument_getArgumentDatatypes( struct array * arguments, struct array * variables );
int argument_determineDatatypeOfArgument( char * argumentDeclaration, struct array * variables );
#endif