Files
c-prime/source/templateInstance.c

13 lines
258 B
C
Raw Permalink Normal View History

2025-11-17 10:28:09 +01:00
#include "templateInstance.h"
struct templateInstance * templateInstance_new() {
struct templateInstance * templateInstance = malloc( sizeof( struct templateInstance ) );
templateInstance->argumentValues = array_new();
return templateInstance;
}