Files
c-prime/source/codeBundle.h

14 lines
112 B
C
Raw Permalink Normal View History

2025-11-17 10:28:09 +01:00
#ifndef _codeBundle
#define _codeBundle
struct codeBundle{
int lineNumber;
char * sourceCode;
};
#endif