aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-01-16 12:31:42 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-01-16 12:31:42 -0500
commit4b21a0fa4e6a7e35b7d9a01bbc0a7080dd392996 (patch)
tree849e56e7515d9bcd3fdcd38840af07dc2ac77987 /src/common.cpp
parent48cf19db2fc33875e32209eb6e32728d019cd6da (diff)
dynamic world linking
Diffstat (limited to 'src/common.cpp')
-rw-r--r--src/common.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/common.cpp b/src/common.cpp
index 84515c3..2d35313 100644
--- a/src/common.cpp
+++ b/src/common.cpp
@@ -92,3 +92,32 @@ void strVectorSortAlpha(std::vector<std::string> *v){
}
}while(change);
}
+
+
+
+/*int strCreateFunc(const char *equ){
+ static unsigned int size;
+ static char *filebuf;
+ static FILE *file;
+
+ size = 57 + strlen(equ) + 3;
+
+ filebuf = new char[size];
+ memset(filebuf,0,size);
+
+ strcpy(filebuf,"#include <stdio.h>\n#include <math.h>\nint main(){return ");
+ strcat(filebuf,equ);
+ strcat(filebuf,";}");
+
+ if(!(file = fopen("gen.tmp","w"))){
+ abort();
+ }
+
+ fwrite(filebuf,size,sizeof(char),file);
+ delete[] filebuf;
+ fclose(file);
+
+ system("
+
+ return 0;
+}*/