blob: b8f4c21f9eee38e699dc93620f8ac674e37afd59 [file] [log] [blame]
typedef struct interpreter {
char Itokenbuf[256];
} PerlInterpreter;
static inline void S_missingterm(char *s)
{
char tmpbuf[3] = "";
char q;
if (!s)
s = tmpbuf;
q = strchr(s,'"') ? '\'' : '"';
}
void S_scan_heredoc(PerlInterpreter *my_perl, char *s, int i)
{
char term;
term = *my_perl->Itokenbuf;
if (i)
{
*s = term;
S_missingterm(my_perl->Itokenbuf);
}
else
S_missingterm(my_perl->Itokenbuf);
}