mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-10-30 10:45:40 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			183 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			183 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <string.h>
 | |
| #include <stdio.h>
 | |
| 
 | |
| int
 | |
| main (void)
 | |
| {
 | |
|   char buffer[10];
 | |
|   char *to = buffer;
 | |
|   to = stpcpy (to, "foo");
 | |
|   to = stpcpy (to, "bar");
 | |
|   puts (buffer);
 | |
|   return 0;
 | |
| }
 |