jack-compiler/util.c

50 lines
876 B
C
Raw Normal View History

2020-12-20 13:58:10 -05:00
#include <string.h>
#include <stdlib.h>
#include "util.h"
char* heapstr(char* str, int len) {
int sz = sizeof(char) * (len + 1);
char* outstr = (char*)malloc(sz);
strcpy(outstr, str);
return outstr;
}
char* ezheapstr(char* str) {
return heapstr(str, strlen(str));
}
int countplaces(int n) {
int places = 1;
int divisor = 1;
if(n < 0) {
n = -n;
places++;
}
while(n / divisor >= 10) {
places++;
divisor *= 10;
}
return places;
}
char* itoa(int i) {
int sz = sizeof(char)*(countplaces(i)+1);
char* a = (char*)malloc(sz);
snprintf(a, sz, "%i", i);
return a;
}
2020-12-21 13:05:49 -05:00
void printstrlist(STRINGLIST* strlist, FILE* stream) {
while(strlist != NULL) {
fprintf(stream, "%s\n", strlist->content);
strlist = strlist->next;
2020-12-20 13:58:10 -05:00
}
}
2020-12-21 13:05:49 -05:00
void freestrlist(STRINGLIST* strlist) {
STRINGLIST* next = strlist->next;
free(strlist);
2020-12-20 13:58:10 -05:00
if(next != NULL)
2020-12-21 13:05:49 -05:00
freestrlist(next);
2020-12-20 13:58:10 -05:00
}