Home
last modified time | relevance | path

Searched refs:next_tmp_str (Results 1 – 2 of 2) sorted by relevance

/dports/lang/rexx-regina/regina-rexx-3.9.3/
H A Dstrings.c443 TSD->next_tmp_str = 0; in tmpstr_of()
448 if ( TSD->tmp_strs[TSD->next_tmp_str] != NULL ) in tmpstr_of()
449 FreeTSD( (char *) TSD->tmp_strs[TSD->next_tmp_str] ); in tmpstr_of()
451 TSD->tmp_strs[TSD->next_tmp_str] = NULL; in tmpstr_of()
452 TSD->tmp_strs[TSD->next_tmp_str] = str_of( TSD, input ); in tmpstr_of()
453 i = TSD->next_tmp_str; in tmpstr_of()
455 if ( ++TSD->next_tmp_str >= (int) (sizeof( TSD->tmp_strs ) / sizeof( TSD->tmp_strs[0]) ) ) in tmpstr_of()
456 TSD->next_tmp_str = 0; in tmpstr_of()
H A Dmt.h40 int next_tmp_str; /* only tmpstr_of() */ member