Skip to content
Prev 28833 / 63421 Next

** operator

Roger Bivand wrote:
Not really, just transcribed during the lexical analysis phase:

    case '*':
        if (nextchar('*'))
            c='^';
        yytext[0] = c;
        yytext[1] = '\0';
        yylval = install(yytext);
        return c;

(There's no "->" function either...)