home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
273_01
/
sstrrt.cc
< prev
next >
Wrap
Text File
|
1988-04-05
|
375b
|
15 lines
s_str_rt(int count, char *str)
/* This will shift the characters in the string pointed to by *str right
count number of characters. Blanks will be added in the positions where
character are shifted out
*/
{
int x;
int len = strlen(str);
if(count >= len) return;
memmove(str+count,str,len-count);
for(x=0;x<count;x++)
*(str + x) = ' ';
}