forked from michiguel/Ordo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mystr.c
72 lines (58 loc) · 1.78 KB
/
mystr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
Ordo is program for calculating ratings of engine or chess players
Copyright 2013 Miguel A. Ballicora
This file is part of Ordo.
Ordo is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Ordo is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Ordo. If not, see <http://www.gnu.org/licenses/>.
*/
#include <assert.h>
#include <stdlib.h>
#include "mystr.h"
/*------------------------------------------------------*\
mystrncpy:
Copy a string from 'src' to 'dest'.
'n' is the maximum number of characters that 'dest'
can receive. 'n' cannot be 0 or negative.
'n' generally is the size of the array 'dest'.
It is guaranteed that 'dest' will end in '\0'.
So, the maximum length that the function can copy
is 'n-1' to give space to the terminator char '\0'
and if there are more characters in src they will be
truncated.
\*------------------------------------------------------*/
void
mystrncpy (char *dest, const char *src, int n)
{
enum { /* for debugging purposes */
FILLINGBYTE = 'y'
};
int c;
assert (n > 0);
assert (NULL != dest);
assert (NULL != src);
c = '\0';
while (n > 1) {
n--;
c = *dest++ = *src++;
if (c == '\0')
break;
}
if (c != '\0') {
n--;
*dest++ = '\0';
}
#ifndef NDEBUG
while (n > 0) {
n--;
*dest++ = FILLINGBYTE;
}
#endif
}