dev/cpp/tex_parser/tex_table_class.cpp
Kolan Sh 7359589f6d вычисление среднего для знаковых целых и массивов (ну и парсер TeX немного)
--HG--
rename : c/tex_parser/get_tags.sh => cpp/tex_parser/get_tags.sh
rename : c/tex_parser/tables4.tex => cpp/tex_parser/tables4.tex
rename : c/tex_parser/tables5.tex => cpp/tex_parser/tables5.tex
rename : c/tex_parser/tex_table_class.hpp => cpp/tex_parser/tex_table_class.hpp
rename : c/tex_parser/tex_table_class_tags.hpp => cpp/tex_parser/tex_table_class_tags.hpp
2011-06-07 19:08:15 +04:00

19 lines
273 B
C++

#include "table_class.hpp"
#include "tex_table_class_tags.hpp"
int parse_table(const char *table_source, table_c *table)
{
size_t table_source_len = strlen(table_source);
for (size_t i = 0; i < table_source_len; i++) {
char c = table_source[i];
}
return 0;
}