2 * (c) Oleg Puchinin 2006.
3 * graycardinalster@gmail.com
11 int ww_begin_line (struct tt_state_t
* d_tt_state
, char *d_out
, int d_offset
)
13 char *S
= &d_tt_state
->d_file_in
[d_offset
] - 1;
14 char * d_end
= &d_out
[strlen (d_out
)] - 1;
17 while (d_end
!= d_out
) {
18 if (*d_end
== ' ' || *d_end
== '\t') {
19 while (*S
== ' ' || *S
== '\t')
22 while ((*d_end
== ' ' || *d_end
== '\t')
37 assert (d_offset
< 0, "Lena 3");