HuntnGather – Diff between revs 1 and 33

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 33
Line 1... Line 1...
1 /////////////////////////////////////////////////////////////////////////// 1 ///////////////////////////////////////////////////////////////////////////
2 // Copyright (C) 2021 Wizardry and Steamworks - License: MIT // 2 // Copyright (C) 2021 Wizardry and Steamworks - License: MIT //
3 /////////////////////////////////////////////////////////////////////////// 3 ///////////////////////////////////////////////////////////////////////////
Line -... Line 4...
-   4  
4   5 /*
5 /* The stringStack structure with top being the index of the next element 6 * The stringStack structure with top being the index of the next element
6 * to be inserted in stack (the top-most element to be found at top - 1). 7 * to be inserted in stack (the top-most element to be found at top - 1).
7 */ 8 */
8 typedef struct { 9 typedef struct {
9 int size; 10 int size;
10 char **store; 11 char **store;
11 int top; 12 int top;