Initial commit

This commit is contained in:
2025-11-17 10:28:09 +01:00
parent 7bff81691f
commit 6ee36e26be
391 changed files with 110253 additions and 0 deletions

44
source/property.h Normal file
View File

@@ -0,0 +1,44 @@
#ifndef _property
#define _property
#include "property.h"
#include "array.h"
#include "text.h"
#include "index.h"
struct property{
int hasValue;
char * propertyName;
char * datatype;
char * decleration;
char * value;
int isPointer;
char * type;
struct array * declerationParts;
};
char * property_composePropertyValue( char * propertyValue, struct property * propertyInstance );
char * property_extractPropertyDeclaration( struct array * propertyParts, struct property * propertyInstance );
char * property_extractPropertyName( struct array * propertyParts );
#endif