Update cc_macro, cc_reader and port to M2libc.

This commit is contained in:
Andrius Štikonas 2021-11-21 21:09:14 +00:00
parent 1ac5bb6eee
commit 9d4638237c
13 changed files with 342 additions and 341 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "M2libc"]
path = M2libc
url = https://github.com/oriansj/M2libc.git

1
M2libc Submodule

@ -0,0 +1 @@
Subproject commit 818fcfb333d73fbe0293b97b769718f0945e22dc

11
cc.c
View File

@ -34,7 +34,7 @@ void preprocess();
void program(); void program();
void recursive_output(struct token_list* i, FILE* out); void recursive_output(struct token_list* i, FILE* out);
void output_tokens(struct token_list *i, FILE* out); void output_tokens(struct token_list *i, FILE* out);
int numerate_string(char *a); int strtoint(char *a);
int main(int argc, char** argv) int main(int argc, char** argv)
{ {
@ -45,6 +45,7 @@ int main(int argc, char** argv)
FILE* destination_file = stdout; FILE* destination_file = stdout;
Architecture = KNIGHT_NATIVE; /* Assume Knight-native */ Architecture = KNIGHT_NATIVE; /* Assume Knight-native */
char* name; char* name;
char* hold;
int i = 1; int i = 1;
while(i <= argc) while(i <= argc)
@ -88,7 +89,13 @@ int main(int argc, char** argv)
} }
else if(match(argv[i], "--max-string")) else if(match(argv[i], "--max-string"))
{ {
MAX_STRING = numerate_string(argv[i+1]); hold = argv[i+1];
if(NULL == hold)
{
fputs("--max-string requires a numeric argument\n", stderr);
exit(EXIT_FAILURE);
}
MAX_STRING = strtoint(hold);
require(0 < MAX_STRING, "Not a valid string size\nAbort and fix your --max-string\n"); require(0 < MAX_STRING, "Not a valid string size\nAbort and fix your --max-string\n");
i = i + 2; i = i + 2;
} }

3
cc.h
View File

@ -37,9 +37,10 @@
#define ARMV7L 4 #define ARMV7L 4
// CONSTANT AARCH64 5 // CONSTANT AARCH64 5
#define AARCH64 5 #define AARCH64 5
// CONSTANT RISCV64 6
#define RISCV64 6
void copy_string(char* target, char* source, int max);
int in_set(int c, char* s); int in_set(int c, char* s);
int match(char* a, char* b); int match(char* a, char* b);
void require(int bool, char* error); void require(int bool, char* error);

View File

@ -21,14 +21,20 @@
#include "gcc_req.h" #include "gcc_req.h"
#include <stdint.h> #include <stdint.h>
char* numerate_number(int a); /* Imported functions */
char* int2str(int x, int base, int signed_p);
void line_error_token(struct token_list *token) void line_error_token(struct token_list *token)
{ {
require(NULL != token, "EOF reached inside of line_error\n"); if(NULL == token)
{
fputs("EOF reached inside of line_error\n", stderr);
fputs("problem at end of file\n", stderr);
return;
}
fputs(token->filename, stderr); fputs(token->filename, stderr);
fputs(":", stderr); fputs(":", stderr);
fputs(numerate_number(token->linenumber), stderr); fputs(int2str(token->linenumber, 10, TRUE), stderr);
fputs(":", stderr); fputs(":", stderr);
} }

View File

@ -1,4 +1,5 @@
/* Copyright (C) 2021 Sanne Wouda /* Copyright (C) 2021 Sanne Wouda
* Copyright (C) 2021 Andrius Štikonas <andrius@stikonas.eu>
* This file is part of M2-Planet. * This file is part of M2-Planet.
* *
* M2-Planet is free software: you can redistribute it and/or modify * M2-Planet is free software: you can redistribute it and/or modify
@ -18,7 +19,7 @@
#include "gcc_req.h" #include "gcc_req.h"
void require(int bool, char* error); void require(int bool, char* error);
int numerate_string(char* a); int strtoint(char* a);
void line_error_token(struct token_list* list); void line_error_token(struct token_list* list);
struct token_list* eat_token(struct token_list* head); struct token_list* eat_token(struct token_list* head);
@ -42,6 +43,18 @@ struct conditional_inclusion* conditional_inclusion_top;
/* point where we are currently modifying the global_token list */ /* point where we are currently modifying the global_token list */
struct token_list* macro_token; struct token_list* macro_token;
void init_macro_env(char* sym, char* value, char* source, int num)
{
struct macro_list* hold = macro_env;
macro_env = calloc(1, sizeof(struct macro_list));
macro_env->symbol = sym;
macro_env->next = hold;
macro_env->expansion = calloc(1, sizeof(struct token_list));
macro_env->expansion->s = value;
macro_env->expansion->filename = source;
macro_env->expansion->linenumber = num;
}
void eat_current_token() void eat_current_token()
{ {
int update_global_token = FALSE; int update_global_token = FALSE;
@ -113,6 +126,13 @@ struct token_list* insert_tokens(struct token_list* point, struct token_list* to
struct macro_list* lookup_macro(struct token_list* token) struct macro_list* lookup_macro(struct token_list* token)
{ {
if(NULL == token)
{
line_error_token(macro_token);
fputs("null token received in lookup_macro\n", stderr);
exit(EXIT_FAILURE);
}
struct macro_list* hold = macro_env; struct macro_list* hold = macro_env;
while (NULL != hold) while (NULL != hold)
@ -130,15 +150,65 @@ struct macro_list* lookup_macro(struct token_list* token)
return NULL; return NULL;
} }
void remove_macro(struct token_list* token)
{
if(NULL == token)
{
line_error_token(macro_token);
fputs("received a null in remove_macro\n", stderr);
exit(EXIT_FAILURE);
}
struct macro_list* hold = macro_env;
struct macro_list* temp;
/* Deal with the first element */
if (match(token->s, hold->symbol)) {
macro_env = hold->next;
free(hold);
return;
}
/* Remove element form the middle of linked list */
while (NULL != hold->next)
{
if (match(token->s, hold->next->symbol))
{
temp = hold->next;
hold->next = hold->next->next;
free(temp);
return;
}
hold = hold->next;
}
/* nothing to undefine */
return;
}
int macro_expression(); int macro_expression();
int macro_variable() int macro_variable()
{ {
int value = 0;
struct macro_list* hold = lookup_macro(macro_token);
if (NULL != hold)
{
if(NULL == hold->expansion)
{
line_error_token(macro_token);
fputs("hold->expansion is a null\n", stderr);
exit(EXIT_FAILURE);
}
value = strtoint(hold->expansion->s);
}
eat_current_token(); eat_current_token();
return 0; return value;
} }
int macro_number() int macro_number()
{ {
int result = numerate_string(macro_token->s); int result = strtoint(macro_token->s);
eat_current_token(); eat_current_token();
return result; return result;
} }
@ -188,6 +258,12 @@ int macro_primary_expr()
if(TRUE == defined_has_paren) if(TRUE == defined_has_paren)
{ {
if(NULL == macro_token)
{
line_error_token(macro_token);
fputs("unterminated define ( statement\n", stderr);
exit(EXIT_FAILURE);
}
require(')' == macro_token->s[0], "missing close parenthesis for defined()\n"); require(')' == macro_token->s[0], "missing close parenthesis for defined()\n");
eat_current_token(); eat_current_token();
} }
@ -347,7 +423,17 @@ int macro_expression()
void handle_define() void handle_define()
{ {
struct macro_list* hold; struct macro_list* hold;
struct token_list* expansion_end; struct token_list* expansion_end = NULL;
/* don't use #define statements from non-included blocks */
int conditional_define = TRUE;
if(NULL != conditional_inclusion_top)
{
if(FALSE == conditional_inclusion_top->include)
{
conditional_define = FALSE;
}
}
eat_current_token(); eat_current_token();
@ -358,7 +444,8 @@ void handle_define()
hold = calloc(1, sizeof(struct macro_list)); hold = calloc(1, sizeof(struct macro_list));
hold->symbol = macro_token->s; hold->symbol = macro_token->s;
hold->next = macro_env; hold->next = macro_env;
macro_env = hold; /* provided it isn't in a non-included block */
if(conditional_define) macro_env = hold;
/* discard the macro name */ /* discard the macro name */
eat_current_token(); eat_current_token();
@ -369,10 +456,18 @@ void handle_define()
if ('\n' == macro_token->s[0]) if ('\n' == macro_token->s[0])
{ {
if(NULL == expansion_end)
{
hold->expansion = NULL;
expansion_end = macro_token;
return;
}
expansion_end->next = NULL; expansion_end->next = NULL;
return; return;
} }
require(NULL != hold, "#define got something it can't handle\n");
expansion_end = macro_token; expansion_end = macro_token;
/* in the first iteration, we set the first token of the expansion, if /* in the first iteration, we set the first token of the expansion, if
@ -382,9 +477,60 @@ void handle_define()
hold->expansion = macro_token; hold->expansion = macro_token;
} }
/* throw away if not used */
if(!conditional_define && (NULL != hold))
{
free(hold);
hold = NULL;
}
eat_current_token(); eat_current_token();
} }
}
void handle_undef()
{
eat_current_token();
remove_macro(macro_token);
eat_current_token();
}
void handle_error()
{
/* don't use #error statements from non-included blocks */
int conditional_error = TRUE;
if(NULL != conditional_inclusion_top)
{
if(FALSE == conditional_inclusion_top->include)
{
conditional_error = FALSE;
}
}
eat_current_token();
/* provided it isn't in a non-included block */
if(conditional_error)
{
line_error_token(macro_token);
fputs(" error: #error ", stderr);
while (TRUE)
{
if ('\n' == macro_token->s[0]) break;
fputs(macro_token->s, stderr);
macro_token = macro_token->next;
fputs(" ", stderr);
}
fputs("\n", stderr);
exit(EXIT_FAILURE);
}
while (TRUE)
{
/* discard the error */
if ('\n' == macro_token->s[0])
{
return;
}
eat_current_token();
}
} }
void macro_directive() void macro_directive()
@ -411,6 +557,60 @@ void macro_directive()
t->previous_condition_matched = t->include; t->previous_condition_matched = t->include;
} }
else if(match("#ifdef", macro_token->s))
{
eat_current_token();
require(NULL != macro_token, "got an EOF terminated macro defined expression\n");
if (NULL != lookup_macro(macro_token))
{
result = TRUE;
}
else
{
result = FALSE;
}
eat_current_token();
/* push conditional inclusion */
t = calloc(1, sizeof(struct conditional_inclusion));
t->prev = conditional_inclusion_top;
conditional_inclusion_top = t;
t->include = TRUE;
if(FALSE == result)
{
t->include = FALSE;
}
t->previous_condition_matched = t->include;
}
else if(match("#ifndef", macro_token->s))
{
eat_current_token();
require(NULL != macro_token, "got an EOF terminated macro defined expression\n");
if (NULL != lookup_macro(macro_token))
{
result = FALSE;
}
else
{
result = TRUE;
}
eat_current_token();
/* push conditional inclusion */
t = calloc(1, sizeof(struct conditional_inclusion));
t->prev = conditional_inclusion_top;
conditional_inclusion_top = t;
t->include = TRUE;
if(FALSE == result)
{
t->include = FALSE;
}
t->previous_condition_matched = t->include;
}
else if(match("#elif", macro_token->s)) else if(match("#elif", macro_token->s))
{ {
eat_current_token(); eat_current_token();
@ -445,8 +645,26 @@ void macro_directive()
{ {
handle_define(); handle_define();
} }
else if(match("#undef", macro_token->s))
{
handle_undef();
}
else if(match("#error", macro_token->s))
{
handle_error();
}
else else
{ {
if(!match("#include", macro_token->s))
{
/* Put a big fat warning but see if we can just ignore */
fputs(">>WARNING<<\n>>WARNING<<\n", stderr);
line_error_token(macro_token);
fputs("feature: ", stderr);
fputs(macro_token->s, stderr);
fputs(" unsupported in M2-Planet\nIgnoring line, may result in bugs\n>>WARNING<<\n>>WARNING<<\n\n", stderr);
}
/* unhandled macro directive; let's eat until a newline; om nom nom */ /* unhandled macro directive; let's eat until a newline; om nom nom */
while(TRUE) while(TRUE)
{ {
@ -467,14 +685,35 @@ void macro_directive()
struct token_list* maybe_expand(struct token_list* token) struct token_list* maybe_expand(struct token_list* token)
{ {
if(NULL == token)
{
line_error_token(macro_token);
fputs("maybe_expand passed a null token\n", stderr);
exit(EXIT_FAILURE);
}
struct macro_list* hold = lookup_macro(token); struct macro_list* hold = lookup_macro(token);
struct token_list* hold2; struct token_list* hold2;
if(NULL == token->next)
{
line_error_token(macro_token);
fputs("we can't expand a null token: ", stderr);
fputs(token->s, stderr);
fputc('\n', stderr);
exit(EXIT_FAILURE);
}
if (NULL == hold) if (NULL == hold)
{ {
return token->next; return token->next;
} }
token = eat_token(token); token = eat_token(token);
if (NULL == hold->expansion)
{
return token->next;
}
hold2 = insert_tokens(token, hold->expansion); hold2 = insert_tokens(token, hold->expansion);
return hold2->next; return hold2->next;

View File

@ -1,4 +1,5 @@
/* Copyright (C) 2016 Jeremiah Orians /* Copyright (C) 2016 Jeremiah Orians
* Copyright (C) 2021 Andrius Štikonas <andrius@stikonas.eu>
* This file is part of M2-Planet. * This file is part of M2-Planet.
* *
* M2-Planet is free software: you can redistribute it and/or modify * M2-Planet is free software: you can redistribute it and/or modify
@ -23,9 +24,16 @@ struct token_list* token;
int line; int line;
char* file; char* file;
int grab_byte()
{
int c = fgetc(input);
if(10 == c) line = line + 1;
return c;
}
int clearWhiteSpace(int c) int clearWhiteSpace(int c)
{ {
if((32 == c) || (9 == c)) return clearWhiteSpace(fgetc(input)); if((32 == c) || (9 == c)) return clearWhiteSpace(grab_byte());
return c; return c;
} }
@ -34,7 +42,7 @@ int consume_byte(int c)
hold_string[string_index] = c; hold_string[string_index] = c;
string_index = string_index + 1; string_index = string_index + 1;
require(MAX_STRING > string_index, "Token exceeded MAX_STRING char limit\nuse --max-string number to increase\n"); require(MAX_STRING > string_index, "Token exceeded MAX_STRING char limit\nuse --max-string number to increase\n");
return fgetc(input); return grab_byte();
} }
int preserve_string(int c) int preserve_string(int c)
@ -48,10 +56,23 @@ int preserve_string(int c)
c = consume_byte(c); c = consume_byte(c);
require(EOF != c, "Unterminated string\n"); require(EOF != c, "Unterminated string\n");
} while(escape || (c != frequent)); } while(escape || (c != frequent));
return fgetc(input); return grab_byte();
} }
void fixup_label()
void copy_string(char* target, char* source, int max)
{
int i = 0;
while(0 != source[i])
{
target[i] = source[i];
i = i + 1;
if(i == max) break;
}
}
void fixup_label()
{ {
int hold = ':'; int hold = ':';
int prev; int prev;
@ -217,9 +238,9 @@ reset:
c = ' '; c = ' ';
} }
} }
else if(in_set(c, "<=>|&!-")) else if(in_set(c, "<=>|&!^%"))
{ {
c = preserve_keyword(c, "<=>|&!-"); c = preserve_keyword(c, "<=>|&!^%");
} }
else if(in_set(c, "'\"")) else if(in_set(c, "'\""))
{ {
@ -230,32 +251,69 @@ reset:
c = consume_byte(c); c = consume_byte(c);
if(c == '*') if(c == '*')
{ {
c = fgetc(input); c = grab_byte();
while(c != '/') while(c != '/')
{ {
while(c != '*') while(c != '*')
{ {
c = fgetc(input); c = grab_byte();
require(EOF != c, "Hit EOF inside of block comment\n"); require(EOF != c, "Hit EOF inside of block comment\n");
if('\n' == c) line = line + 1;
} }
c = fgetc(input); c = grab_byte();
require(EOF != c, "Hit EOF inside of block comment\n"); require(EOF != c, "Hit EOF inside of block comment\n");
if('\n' == c) line = line + 1;
} }
c = fgetc(input); c = grab_byte();
goto reset; goto reset;
} }
else if(c == '/') else if(c == '/')
{ {
c = consume_byte(c); c = consume_byte(c);
} }
else if(c == '=')
{
c = consume_byte(c);
}
} }
else if (c == '\n') else if (c == '\n')
{ {
line = line + 1;
c = consume_byte(c); c = consume_byte(c);
} }
else if(c == '*')
{
c = consume_byte(c);
if(c == '=')
{
c = consume_byte(c);
}
}
else if(c == '+')
{
c = consume_byte(c);
if(c == '=')
{
c = consume_byte(c);
}
if(c == '+')
{
c = consume_byte(c);
}
}
else if(c == '-')
{
c = consume_byte(c);
if(c == '=')
{
c = consume_byte(c);
}
if(c == '>')
{
c = consume_byte(c);
}
if(c == '-')
{
c = consume_byte(c);
}
}
else else
{ {
c = consume_byte(c); c = consume_byte(c);
@ -263,7 +321,7 @@ reset:
/* More efficiently allocate memory for string */ /* More efficiently allocate memory for string */
current->s = calloc(string_index + 2, sizeof(char)); current->s = calloc(string_index + 2, sizeof(char));
require(NULL != current->s, "Exhusted memory while trying to copy a token\n"); require(NULL != current->s, "Exhausted memory while trying to copy a token\n");
copy_string(current->s, hold_string, MAX_STRING); copy_string(current->s, hold_string, MAX_STRING);
current->prev = token; current->prev = token;
@ -294,7 +352,7 @@ struct token_list* read_all_tokens(FILE* a, struct token_list* current, char* fi
line = 1; line = 1;
file = filename; file = filename;
token = current; token = current;
int ch =fgetc(input); int ch = grab_byte();
while(EOF != ch) ch = get_token(ch); while(EOF != ch) ch = get_token(ch);
return token; return token;

View File

@ -1,32 +0,0 @@
/* Copyright (C) 2016 Jeremiah Orians
* Copyright (C) 2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
* This file is part of M2-Planet.
*
* M2-Planet is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* M2-Planet is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
*/
#define FALSE 0
// CONSTANT FALSE 0
#define TRUE 1
// CONSTANT TRUE 1
int in_set(int c, char* s)
{
while(0 != s[0])
{
if(c == s[0]) return TRUE;
s = s + 1;
}
return FALSE;
}

View File

@ -1,35 +0,0 @@
/* Copyright (C) 2016 Jeremiah Orians
* This file is part of M2-Planet.
*
* M2-Planet is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* M2-Planet is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
*/
#define FALSE 0
// CONSTANT FALSE 0
#define TRUE 1
// CONSTANT TRUE 1
int match(char* a, char* b)
{
int i = -1;
do
{
i = i + 1;
if(a[i] != b[i])
{
return FALSE;
}
} while((0 != a[i]) && (0 !=b[i]));
return TRUE;
}

View File

@ -1,177 +0,0 @@
/* Copyright (C) 2016 Jeremiah Orians
* This file is part of M2-Planet.
*
* M2-Planet is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* M2-Planet is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
*/
#include<stdlib.h>
#include<string.h>
#include<stdio.h>
// void* calloc(int count, int size);
#define TRUE 1
//CONSTANT TRUE 1
#define FALSE 0
//CONSTANT FALSE 0
int in_set(int c, char* s);
char* numerate_number(int a)
{
char* result = calloc(16, sizeof(char));
if(NULL == result)
{
fputs("calloc failed in numerate_number\n", stderr);
exit(EXIT_FAILURE);
}
int i = 0;
/* Deal with Zero case */
if(0 == a)
{
result[0] = '0';
return result;
}
/* Deal with negatives */
if(0 > a)
{
result[0] = '-';
i = 1;
a = a * -1;
}
/* Using the largest 10^n number possible in 32bits */
int divisor = 0x3B9ACA00;
/* Skip leading Zeros */
while(0 == (a / divisor)) divisor = divisor / 10;
/* Now simply collect numbers until divisor is gone */
while(0 < divisor)
{
result[i] = ((a / divisor) + 48);
a = a % divisor;
divisor = divisor / 10;
i = i + 1;
}
return result;
}
int char2hex(int c)
{
if (c >= '0' && c <= '9') return (c - 48);
else if (c >= 'a' && c <= 'f') return (c - 87);
else if (c >= 'A' && c <= 'F') return (c - 55);
else return -1;
}
int hex2char(int c)
{
if((c >= 0) && (c <= 9)) return (c + 48);
else if((c >= 10) && (c <= 15)) return (c + 55);
else return -1;
}
int char2dec(int c)
{
if (c >= '0' && c <= '9') return (c - 48);
else return -1;
}
int dec2char(int c)
{
if((c >= 0) && (c <= 9)) return (c + 48);
else return -1;
}
int index_number(char* s, char c)
{
int i = 0;
while(s[i] != c)
{
i = i + 1;
if(0 == s[i]) return -1;
}
return i;
}
int toupper(int c)
{
if(in_set(c, "abcdefghijklmnopqrstuvwxyz")) return (c & 0xDF);
return c;
}
int set_reader(char* set, int mult, char* input)
{
int n = 0;
int i = 0;
int hold;
int negative_p = FALSE;
if(input[0] == '-')
{
negative_p = TRUE;
i = i + 1;
}
while(in_set(input[i], set))
{
n = n * mult;
hold = index_number(set, toupper(input[i]));
/* Input managed to change between in_set and index_number */
if(-1 == hold) return 0;
n = n + hold;
i = i + 1;
}
/* loop exited before NULL and thus invalid input */
if(0 != input[i]) return 0;
if(negative_p)
{
n = 0 - n;
}
return n;
}
int numerate_string(char *a)
{
/* If NULL string */
if(0 == a[0])
{
return 0;
}
/* Deal with binary*/
else if ('0' == a[0] && 'b' == a[1])
{
return set_reader("01", 2, a+2);
}
/* Deal with hex */
else if ('0' == a[0] && 'x' == a[1])
{
return set_reader("0123456789ABCDEFabcdef", 16, a+2);
}
/* Deal with octal */
else if('0' == a[0])
{
return set_reader("01234567", 8, a+1);
}
/* Deal with decimal */
else
{
return set_reader("0123456789", 10, a);
}
}

View File

@ -1,29 +0,0 @@
/* Copyright (C) 2016 Jeremiah Orians
* Copyright (C) 2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
* This file is part of M2-Planet.
*
* M2-Planet is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* M2-Planet is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
*/
#include<stdio.h>
#include<stdlib.h>
void require(int bool, char* error)
{
if(!bool)
{
fputs(error, stderr);
exit(EXIT_FAILURE);
}
}

View File

@ -1,37 +0,0 @@
/* Copyright (C) 2016 Jeremiah Orians
* This file is part of M2-Planet.
*
* M2-Planet is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* M2-Planet is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with M2-Planet. If not, see <http://www.gnu.org/licenses/>.
*/
#include<stdlib.h>
#include<stdio.h>
void copy_string(char* target, char* source, int max)
{
int i = 0;
while(0 != source[i])
{
target[i] = source[i];
i = i + 1;
if(i == max) break;
}
}
int string_length(char* a)
{
int i = 0;
while(0 != a[i]) i = i + 1;
return i;
}

View File

@ -27,11 +27,7 @@ all: M2-Mesoplanet
M2-Mesoplanet: bin results cc.h cc_reader.c cc_core.c cc.c cc_globals.c cc_globals.h M2-Mesoplanet: bin results cc.h cc_reader.c cc_core.c cc.c cc_globals.c cc_globals.h
$(CC) $(CFLAGS) \ $(CC) $(CFLAGS) \
functions/match.c \ M2libc/bootstrappable.c \
functions/in_set.c \
functions/numerate_number.c \
functions/string.c \
functions/require.c \
cc_reader.c \ cc_reader.c \
cc_core.c \ cc_core.c \
cc_macro.c \ cc_macro.c \