Initial commit
This commit is contained in:
12
source/templateInstance.c
Normal file
12
source/templateInstance.c
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
#include "templateInstance.h"
|
||||
|
||||
struct templateInstance * templateInstance_new() {
|
||||
|
||||
struct templateInstance * templateInstance = malloc( sizeof( struct templateInstance ) );
|
||||
|
||||
templateInstance->argumentValues = array_new();
|
||||
|
||||
return templateInstance;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user