source: buchla-68k/libsm/strcpy.c@ 7258c6a

Last change on this file since 7258c6a was 7258c6a, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Use standard integer types.

  • Property mode set to 100644
File size: 400 bytes
Line 
1/*
2 =============================================================================
3 strcpy.c -- copy string
4 Version 1 -- 1987-06-12
5
6 Copy string s2 to s1. s1 must be large enough.
7 return s1
8 =============================================================================
9*/
10
11int8_t *strcpy(int8_t *s1, int8_t *s2)
12{
13 register int8_t *os1;
14
15 os1 = s1;
16
17 while(*s1++ = *s2++)
18 ;
19
20 return(os1);
21}
Note: See TracBrowser for help on using the repository browser.