1 /* Project 16 Source Code~
\r
2 * Copyright (C) 2012-2017 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover
\r
4 * This file is part of Project 16.
\r
6 * Project 16 is free software; you can redistribute it and/or modify
\r
7 * it under the terms of the GNU General Public License as published by
\r
8 * the Free Software Foundation; either version 3 of the License, or
\r
9 * (at your option) any later version.
\r
11 * Project 16 is distributed in the hope that it will be useful,
\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 * GNU General Public License for more details.
\r
16 * You should have received a copy of the GNU General Public License
\r
17 * along with this program. If not, see <http://www.gnu.org/licenses/>, or
\r
18 * write to the Free Software Foundation, Inc., 51 Franklin Street,
\r
19 * Fifth Floor, Boston, MA 02110-1301 USA.
\r
23 #include "src/lib/16_head.h"
\r
25 // big global status text buffer
\r
26 char global_temp_status_text[512];
\r
27 char global_temp_status_text2[512];
\r
32 long int save_pos, size_of_file;
\r
34 save_pos = ftell(fp);
\r
35 fseek(fp, 0L, SEEK_END);
\r
36 size_of_file = ftell(fp);
\r
37 fseek(fp, save_pos, SEEK_SET);
\r
38 return(size_of_file);
\r
41 // clrstdin() clear any leftover chars tha may be in stdin stream //
\r
45 while( ( ch = getchar() ) != '\n' && ch != EOF );
\r
48 //from http://stackoverflow.com/questions/2736753/how-to-remove-extension-from-file-name
\r
49 // remove_ext: removes the "extension" from a file spec.
\r
50 // mystr is the string to process.
\r
51 // dot is the extension separator.
\r
52 // sep is the path separator (0 means to ignore).
\r
53 // Returns an allocated string identical to the original but
\r
54 // with the extension removed. It must be freed when you're
\r
55 // finished with it.
\r
56 // If you pass in NULL or the new string can't be allocated,
\r
59 char *remove_ext (char* mystr, char dot, char sep) {
\r
60 char *retstr, *lastdot, *lastsep;
\r
62 // Error checks and allocate string.
\r
65 if ((retstr = malloc(strlen (mystr) + 1)) == NULL)
\r
68 // Make a copy and find the relevant characters.
\r
70 strcpy (retstr, mystr);
\r
71 lastdot = strrchr (retstr, dot);
\r
72 lastsep = (sep == 0) ? NULL : strrchr (retstr, sep);
\r
74 // If it has an extension separator.
\r
76 if (lastdot != NULL) {
\r
77 // and it's before the extenstion separator.
\r
79 if (lastsep != NULL) {
\r
80 if (lastsep < lastdot) {
\r
86 // Has extension separator with no path separator.
\r
92 // Return the modified string.
\r
98 //from http://quiz.geeksforgeeks.org/c-program-cyclically-rotate-array-one/
\r
99 void rotateR(byte *arr, byte n)
\r
101 byte x = arr[n-1], i;
\r
102 for (i = n-1; i > 0; i--)
\r
107 void rotateL(byte *arr, byte n)
\r
109 byte x = arr[n+1], i;
\r
110 for (i = n+1; i > 0; i++)
\r
115 void printmeminfoline(byte *strc, const byte *pee, size_t h_total, size_t h_used, size_t h_free)
\r
118 strcat(strc,pee); strcat(strc," "); ultoa((dword)h_total,str,10); strcat(strc,str);
\r
119 if(strlen(str)<=4) strcat(strc," "); //printf("%u\n", strlen(str));
\r
120 strcat(strc," "); ultoa((dword)h_used,str,10); strcat(strc,str); strcat(strc," "); strcat(strc," ");
\r
121 ultoa((dword)h_free,str,10); strcat(strc,str);
\r
125 ///////////////////////////////////////////////////////////////////////////
\r
127 // US_CheckParm() - checks to see if a string matches one of a set of
\r
128 // strings. The check is case insensitive. The routine returns the
\r
129 // index of the string that matched, or -1 if no matches were found
\r
131 ///////////////////////////////////////////////////////////////////////////
\r
133 US_CheckParm(char *parm,char **strings)
\r
139 while (!isalpha(*parm)) // Skip non-alphas
\r
142 for (i = 0;*strings && **strings;i++)
\r
144 for (s = *strings++,p = parm,cs = cp = 0;cs == cp;)
\r
160 // for input test //
\r
161 byte dirchar(byte in)
\r
185 //from: http://stackoverflow.com/questions/5349896/print-a-struct-in-c
\r
186 void print_mem(void const *vp, size_t n)
\r
189 unsigned char const *p = vp;
\r
190 for (i=0; i<n; i++)
\r
192 printf("%02x", p[i]);
\r
193 //printf("%c", p[i]);
\r
194 if((!(i%16)) && i) printf("\n");
\r
196 //printf("%u%%40=%u\n", i, i%40);
\r
199 printf("\nstruct size is %zu bytes\n", n);
\r