annotate lib/xmemdup0.h @ 40196:e63f5d3edab5

relocatable-prog: Update documentation. * doc/relocatable-maint.texi (Supporting Relocation): Update to match the recent changes.
author Bruno Haible <bruno@clisp.org>
date Sun, 24 Feb 2019 01:49:15 +0100
parents e9a68ff67aea
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10068
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
1 /* xmemdup0.h -- copy a block of arbitrary bytes, plus a trailing NUL
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
2
40057
b06060465f09 maint: Run 'make update-copyright'
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
3 Copyright (C) 2008-2019 Free Software Foundation, Inc.
10068
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
4
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
5 This program is free software: you can redistribute it and/or modify
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
6 it under the terms of the GNU General Public License as published by
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
7 the Free Software Foundation; either version 3 of the License, or
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
8 (at your option) any later version.
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
9
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
10 This program is distributed in the hope that it will be useful,
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
13 GNU General Public License for more details.
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
14
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
15 You should have received a copy of the GNU General Public License
19190
9759915b2aca all: prefer https: URLs
Paul Eggert <eggert@cs.ucla.edu>
parents: 18626
diff changeset
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
10068
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
17
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
18 #ifndef XMEMDUP_H_
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
19 # define XMEMDUP_H_
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
20
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
21 # include <stddef.h>
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
22
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
23
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
24 # ifdef __cplusplus
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
25 extern "C" {
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
26 # endif
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
27
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
28 char *xmemdup0 (void const *p, size_t s);
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
29
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
30 # ifdef __cplusplus
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
31 }
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
32 # endif
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
33
c7189e3f4fa9 Split xmemdup0 into its own module.
Eric Blake <ebb9@byu.net>
parents:
diff changeset
34 #endif /* !XMEMDUP0_H_ */