home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / glibc-1.09 / glibc-1 / glibc-1.09.1 / manual / examples / stpcpy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-18  |  183 b   |  14 lines

  1. #include <string.h>
  2. #include <stdio.h>
  3.  
  4. int
  5. main (void)
  6. {
  7.   char buffer[10];
  8.   char *to = buffer;
  9.   to = stpcpy (to, "foo");
  10.   to = stpcpy (to, "bar");
  11.   puts (buffer);
  12.   return 0;
  13. }
  14.