From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/493 Path: news.gmane.org!not-for-mail From: Szabolcs Nagy Newsgroups: gmane.linux.lib.musl.general Subject: Re: extended locale extentions Date: Mon, 10 Oct 2011 16:17:04 +0200 Message-ID: <20111010141704.GT24939@port70.net> References: Reply-To: musl@lists.openwall.com NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1318256243 24408 80.91.229.12 (10 Oct 2011 14:17:23 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 10 Oct 2011 14:17:23 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-494-gllmg-musl=m.gmane.org@lists.openwall.com Mon Oct 10 16:17:18 2011 Return-path: Envelope-to: gllmg-musl@lo.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by lo.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1RDGfM-0008El-N9 for gllmg-musl@lo.gmane.org; Mon, 10 Oct 2011 16:17:16 +0200 Original-Received: (qmail 10160 invoked by uid 550); 10 Oct 2011 14:17:16 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 10152 invoked from network); 10 Oct 2011 14:17:16 -0000 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Xref: news.gmane.org gmane.linux.lib.musl.general:493 Archived-At: * aep [2011-10-10 16:07:33 +0200]: > Hey, anyone would be offended by adding the non standard locale > extentions to musl? > > that is isspace_l, isupper_l , etc... > these are standard, not c standard, but posix standard http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/ctype.h.html i wonder if a dummy implementation is ok eg #define foo_l(c, l) foo(c) (maybe with a check if l is the c/posix locale)