version 1.7, 2000/12/03 16:15:03 |
version 1.9, 2003/06/02 10:25:56 |
|
|
/* -*- mode: C; coding: euc-japan -*- */ |
/* -*- mode: C; coding: euc-japan -*- */ |
/* $OpenXM: OpenXM/src/ox_toolkit/mathcap.c,v 1.6 2000/11/27 09:57:10 ohara Exp $ */ |
/* $OpenXM: OpenXM/src/ox_toolkit/mathcap.c,v 1.8 2003/05/19 06:57:38 ohara Exp $ */ |
|
|
/* This module includes functions for handling mathcap databases. */ |
/* This module includes functions for handling mathcap databases. */ |
|
|
Line 87 static table *new_table(int *src) |
|
Line 87 static table *new_table(int *src) |
|
int i; |
int i; |
while (src[len++] != 0) { |
while (src[len++] != 0) { |
} |
} |
new = malloc(sizeof(table)*len); |
new = MALLOC(sizeof(table)*len); |
for(i=0; i<len; i++) { |
for(i=0; i<len; i++) { |
table_init(new+i, src[i]); |
table_init(new+i, src[i]); |
} |
} |
Line 236 static cmo_list *sysinfo_get() |
|
Line 236 static cmo_list *sysinfo_get() |
|
|
|
static char *new_string(char *s) |
static char *new_string(char *s) |
{ |
{ |
char *t = malloc(sizeof(s)+1); |
char *t = MALLOC(strlen(s)+1); |
strcpy(t, s); |
strcpy(t, s); |
return t; |
return t; |
} |
} |
Line 247 static int *new_int_array(int *array) |
|
Line 247 static int *new_int_array(int *array) |
|
int length = 0; |
int length = 0; |
while(array[length++] != 0) |
while(array[length++] != 0) |
; |
; |
new_array = malloc(sizeof(int)*length); |
new_array = MALLOC(sizeof(int)*length); |
return memcpy(new_array, array, sizeof(int)*length); |
return memcpy(new_array, array, sizeof(int)*length); |
} |
} |
|
|
Line 268 void mathcap_init(int ver, char *vstr, char *sysname, |
|
Line 268 void mathcap_init(int ver, char *vstr, char *sysname, |
|
|
|
mathcap *new_mathcap() |
mathcap *new_mathcap() |
{ |
{ |
mathcap *new = malloc(sizeof(mathcap)); |
mathcap *new = MALLOC(sizeof(mathcap)); |
new->cmotbl = new_table(sysinfo.cmo_tags); |
new->cmotbl = new_table(sysinfo.cmo_tags); |
new->smtbl = new_table(sysinfo.sm_cmds); |
new->smtbl = new_table(sysinfo.sm_cmds); |
return new; |
return new; |