home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1994 #1
/
monster.zip
/
monster
/
PROG_C
/
SNIP9404.ZIP
/
RMALLWS.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-04-03
|
566b
|
29 lines
/*
** Originally published as part of the MicroFirm Function Library
**
** Copyright 1986, S.E. Margison
** Copyright 1989, Robert B.Stout
**
** Subset version released to the public domain, 1991
**
** remove all whitespace from a string
*/
#include <stdio.h>
#include <ctype.h>
#define NUL '\0'
char *rmallws(char *str)
{
char *obuf, *nbuf;
for (obuf = str, nbuf = str; *obuf && obuf; ++obuf)
{
if (!isspace(*obuf))
*nbuf++ = *obuf;
}
*nbuf = NUL;
return str;
}