]> 4ch.mooo.com Git - 16.git/blobdiff - src/lib/16_head.c
updated the copyleft wwww i am not deAD! i just been 2 busy last 6 monthes
[16.git] / src / lib / 16_head.c
index 7f46743e44644c2f9fb9d722358f8b72c9f6620b..b015902ad898188731bcf9ef2ee3b70c622dd553 100755 (executable)
@@ -1,5 +1,5 @@
 /* Project 16 Source Code~\r
- * Copyright (C) 2012-2017 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover\r
+ * Copyright (C) 2012-2018 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover\r
  *\r
  * This file is part of Project 16.\r
  *\r
 \r
 #include "src/lib/16_head.h"\r
 \r
+//cpu reg stuff for _AX, _BX, _CX, _DX\r
+#ifdef __WATCOMC__\r
+union regs CPURegs;\r
+#endif\r
+\r
+// big global status text buffer\r
+char global_temp_status_text[512];\r
+char global_temp_status_text2[512];\r
+\r
 long int\r
 filesize(FILE *fp)\r
 {\r
@@ -34,6 +43,13 @@ filesize(FILE *fp)
        return(size_of_file);\r
 }\r
 \r
+// clrstdin() clear any leftover chars tha may be in stdin stream //\r
+void clrstdin()\r
+{\r
+   int ch = 0;\r
+   while( ( ch = getchar() ) != '\n' && ch != EOF );\r
+}\r
+\r
 //from http://stackoverflow.com/questions/2736753/how-to-remove-extension-from-file-name\r
 // remove_ext: removes the "extension" from a file spec.\r
 //   mystr is the string to process.\r
@@ -49,10 +65,9 @@ char *remove_ext (char* mystr, char dot, char sep) {
        char *retstr, *lastdot, *lastsep;\r
 \r
        // Error checks and allocate string.\r
-\r
        if (mystr == NULL)\r
                return NULL;\r
-       if ((retstr = malloc (strlen (mystr) + 1)) == NULL)\r
+       if ((retstr = malloc(strlen (mystr) + 1)) == NULL)\r
                return NULL;\r
 \r
        // Make a copy and find the relevant characters.\r
@@ -80,10 +95,11 @@ char *remove_ext (char* mystr, char dot, char sep) {
        }\r
 \r
        // Return the modified string.\r
-\r
+       free(mystr);\r
        return retstr;\r
 }\r
 \r
+\r
 //from http://quiz.geeksforgeeks.org/c-program-cyclically-rotate-array-one/\r
 void rotateR(byte *arr, byte n)\r
 {\r
@@ -146,7 +162,7 @@ US_CheckParm(char *parm,char **strings)
        return(-1);\r
 }\r
 \r
-\r
+// for input test //\r
 byte dirchar(byte in)\r
 {\r
        byte out;\r
@@ -170,3 +186,32 @@ byte dirchar(byte in)
        }\r
        return out;\r
 }\r
+\r
+//from: http://stackoverflow.com/questions/5349896/print-a-struct-in-c\r
+void print_mem(void const *vp, size_t n)\r
+{\r
+       size_t i;\r
+       unsigned char const *p = vp;\r
+       for (i=0; i<n; i++)\r
+       {\r
+               printf("%02x", p[i]);\r
+               //printf("%c", p[i]);\r
+               if((!(i%16)) && i) printf("\n");\r
+               else printf(" ");\r
+               //printf("%u%%40=%u\n", i, i%40);\r
+       }\r
+       putchar('\n');\r
+       printf("\nstruct size is %zu bytes\n", n);\r
+};\r
+\r
+//from: https://groups.google.com/forum/#!topic/comp.lang.asm.x86/QtuVXl43nDo\r
+void hres (void)\r
+{\r
+       __asm {\r
+               mov     ax,3\r
+               int     10h\r
+               mov     ax,1112h\r
+               xor     bx,bx\r
+               int     10h\r
+       }\r
+}\r