Files
c-prime/source/templateInstance.h

23 lines
257 B
C
Raw Permalink Normal View History

2025-11-17 10:28:09 +01:00
#ifndef _templateInstance
#define _templateInstance
#include <stdio.h>
#include <array.h>
#include "stdlib.h"
struct templateInstance{
struct array * argumentValues; // not properties
};
struct templateInstance * templateInstance_new();
#endif