Deutsch   English   Français   Italiano  
<v2maqh$1ik9e$5@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: ...!feeds.phibee-telecom.net!weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Lawrence D'Oliveiro <ldo@nz.invalid>
Newsgroups: comp.lang.c
Subject: Re: C23 thoughts and opinions
Date: Thu, 23 May 2024 02:48:50 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 11
Message-ID: <v2maqh$1ik9e$5@dont-email.me>
References: <v2l828$18v7f$1@dont-email.me> <v2lfvr$1ahhf$1@dont-email.me>
	<74393ec4-3a71-4b40-b89c-a04c65f92e9e@gmail.com>
	<v2ll5l$1bg17$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Injection-Date: Thu, 23 May 2024 04:48:50 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="a8a737fc9dd5c52bce5f2387b69f20c2";
	logging-data="1659182"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX1+B8a6erNesvFVGQewJ2o0I"
User-Agent: Pan/0.155 (Kherson; fc5a80b8)
Cancel-Lock: sha1:f0hL5JqIarqp3FqvdRRINM/l8Gk=
Bytes: 1331

On Wed, 22 May 2024 21:39:17 +0100, Malcolm McLean wrote:

> static int haserror(LEXER *lex)
> {
>      return lex->error[0] ? 1 : 0;
> }

    static bool has_error(LEXER * lex)
      {
         return lex->error[0] != 0;
      } /*has_error*/