| 184 |
{ \ |
{ \ |
| 185 |
if ((out_buf_offset) + (tag_out_len) >= (out_buf_len)) \ |
if ((out_buf_offset) + (tag_out_len) >= (out_buf_len)) \ |
| 186 |
{ \ |
{ \ |
| 187 |
log_error("Buffer is not longer enough for output string %d >= %d\n", (out_buf_offset) + (tag_out_len), (out_buf_len)); \ |
log_error("Buffer is not longer enough for output string %d >= %d", (out_buf_offset) + (tag_out_len), (out_buf_len)); \ |
| 188 |
out_buf[out_buf_offset] = '\0'; \ |
out_buf[out_buf_offset] = '\0'; \ |
| 189 |
return (out_buf_offset); \ |
return (out_buf_offset); \ |
| 190 |
} \ |
} \ |
| 217 |
char tab_spaces[TAB_SIZE + 1]; |
char tab_spaces[TAB_SIZE + 1]; |
| 218 |
int tab_width = 0; |
int tab_width = 0; |
| 219 |
|
|
| 220 |
|
clock_begin = clock(); |
| 221 |
|
|
| 222 |
#ifdef _DEBUG |
#ifdef _DEBUG |
| 223 |
size_t str_in_len = strlen(str_in); |
size_t str_in_len = strlen(str_in); |
| 224 |
#endif |
#endif |
| 225 |
|
|
|
clock_begin = clock(); |
|
|
|
|
| 226 |
lml_init(); |
lml_init(); |
| 227 |
|
|
| 228 |
lml_tag_disabled = 0; |
lml_tag_disabled = 0; |
| 238 |
#ifdef _DEBUG |
#ifdef _DEBUG |
| 239 |
if (i >= str_in_len) |
if (i >= str_in_len) |
| 240 |
{ |
{ |
| 241 |
log_error("Bug: i(%d) >= str_in_len(%d)\n", i, str_in_len); |
log_error("Bug: i(%d) >= str_in_len(%d)", i, str_in_len); |
| 242 |
break; |
break; |
| 243 |
} |
} |
| 244 |
#endif |
#endif |