home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
273_01
/
rightstr.cc
< prev
next >
Wrap
Text File
|
1987-09-27
|
363b
|
13 lines
right_str(int x, char *str, char *new_str)
/* This will take the right x number of character from the string pointed
to by *str and place them into the string pointed to by *new_str.
*/
{
str=str + strlen(str) - x;
while(*str) {
*new_str=*str;
new_str++; str++;
}
*new_str=0x00;
}