dev/c/tex_parser/tex_table.c

24 lines
368 B
C
Raw Normal View History

#include "tex_table.h"
#include "tex_table_tags.h"
#include <string.h>
int parse_table(const char *table_source, size_t len, struct table_s *table, struct xerror_s *error)
{
if (!len)
len = strlen(table_source);
for (size_t i = 0; i < len; i++) {
char c = table_source[i];
c = c;
}
table->id = "Drossel1.Table1";
error->message = NULL;
return 0;
}