From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,9245b8db9abd376c X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-04-19 11:26:37 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.mathworks.com!wn3feed!wn1feed!worldnet.att.net!135.173.83.55!bgtnsc05-news.ops.worldnet.att.net.POSTED!not-for-mail Message-ID: <3CC06161.7060100@worldnet.att.net> From: Jim Rogers User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Out parameters in a function References: <4519e058.0204150709.55c94dfb@posting.google.com> <3cbbe583.3628858@news.demon.co.uk> <3cbc3f05.26543327@news.demon.co.uk> <3CBCFCC8.6000206@worldnet.att.net> <87vganfuxs.fsf@deneb.enyo.de> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 19 Apr 2002 18:26:37 GMT NNTP-Posting-Host: 12.86.35.8 X-Complaints-To: abuse@worldnet.att.net X-Trace: bgtnsc05-news.ops.worldnet.att.net 1019240797 12.86.35.8 (Fri, 19 Apr 2002 18:26:37 GMT) NNTP-Posting-Date: Fri, 19 Apr 2002 18:26:37 GMT Organization: AT&T Worldnet Xref: archiver1.google.com comp.lang.ada:22792 Date: 2002-04-19T18:26:37+00:00 List-Id: Is _Bool part of the new C standard? It certainly is not part of the initial ANSI C standard. There have been a number of commonly used preprocessor definitions for YES/NO and TRUE/FALSE. As we all know, preprocessor definitions are not types. My guess is that _Bool is an enum, which is not actually a type in C either. It is merely an alias for int values. Jim Rogers Florian Weimer wrote: > Jim Rogers writes: > > >>Well, almost. C does not have a boolean type. >> > > What about the standard type _Bool? >