public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
From: "Quang Nguyen (Ngo)" <quang.nguyen@tapeware.com>
To: gcc-help@gcc.gnu.org
Subject: RE: strupr
Date: Fri, 23 Aug 2002 10:27:00 -0000	[thread overview]
Message-ID: <E50A109EE98AA049BAA09D725DB0714F38A841@yt-internet.tapeware.com> (raw)


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
________________________________________________________________________

             reply	other threads:[~2002-08-23 17:27 UTC|newest]

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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E50A109EE98AA049BAA09D725DB0714F38A841@yt-internet.tapeware.com \
    --to=quang.nguyen@tapeware.com \
    --cc=gcc-help@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).