Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: bison/src/bison/2.4.1/bison-2.4.1-src/lib/stpcpy.c

Issue 10807020: Add native Windows binary for bison. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /* stpcpy.c -- copy a string and return pointer to end of new string
2 Copyright (C) 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc.
3
4 NOTE: The canonical source of this file is maintained with the GNU C Library.
5 Bugs can be reported to bug-glibc@prep.ai.mit.edu.
6
7 This program is free software: you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 3 of the License, or any
10 later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include <config.h>
21
22 #include <string.h>
23
24 #undef __stpcpy
25 #ifdef _LIBC
26 # undef stpcpy
27 #endif
28
29 #ifndef weak_alias
30 # define __stpcpy stpcpy
31 #endif
32
33 /* Copy SRC to DEST, returning the address of the terminating '\0' in DEST. */
34 char *
35 __stpcpy (char *dest, const char *src)
36 {
37 register char *d = dest;
38 register const char *s = src;
39
40 do
41 *d++ = *s;
42 while (*s++ != '\0');
43
44 return d - 1;
45 }
46 #ifdef weak_alias
47 weak_alias (__stpcpy, stpcpy)
48 #endif
OLDNEW
« no previous file with comments | « bison/src/bison/2.4.1/bison-2.4.1-src/lib/stdlib.in.h ('k') | bison/src/bison/2.4.1/bison-2.4.1-src/lib/streq.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698