public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* RE: strupr
@ 2002-08-23 10:27 Quang Nguyen (Ngo)
  0 siblings, 0 replies; 3+ messages in thread
From: Quang Nguyen (Ngo) @ 2002-08-23 10:27 UTC (permalink / raw)
  To: gcc-help


Paul Gignoux wrote:

> is the function strupr() available in a c++ programm and (if yes) what
> is the include file ?

char * strupr(char *s)
{
	char *tmp = s;
	while (*s)
		*s = toupper(*s++);
	return tmp;
}

--
Quang

________________________________________________________________________
This email has been scanned for all viruses by the MessageLabs SkyScan
service. For more information on a proactive anti-virus service working
around the clock, around the globe, visit http://www.messagelabs.com
________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread
* strupr
@ 2002-08-23  8:04 Paul Gignoux
  0 siblings, 0 replies; 3+ messages in thread
From: Paul Gignoux @ 2002-08-23  8:04 UTC (permalink / raw)
  To: 'gcc-help@gcc.gnu.org'

Hello,

is the function strupr() available in a c++ programm and (if yes) what
is the include file ?

thank you.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2002-08-23 17:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <616BE6A276E3714788D2AC35C40CD18D7A4EA3@whale.softwire.co.uk>
2002-08-23  8:43 ` strupr Rupert Wood
2002-08-23 10:27 strupr Quang Nguyen (Ngo)
  -- strict thread matches above, loose matches on Subject: below --
2002-08-23  8:04 strupr Paul Gignoux

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).