summaryrefslogtreecommitdiffstats
path: root/libreport/src/lib/overlapping_strcpy.c
blob: 3301024fd4f05269b521b2dc62efcdf558512d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
 *
 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
 */
#include "libreport.h"

/* Like strcpy but can copy overlapping strings. */
void overlapping_strcpy(char *dst, const char *src)
{
    /* Cheap optimization for dst == src case -
     * better to have it here than in many callers.
     */
    if (dst != src)
    {
        while ((*dst = *src) != '\0')
        {
            dst++;
            src++;
        }
    }
}