@@ -29,49 +29,49 @@ nothrow:
29
29
@nogc :
30
30
31
31
// /
32
- pure void * memchr(return const void * s, int c, size_t n);
32
+ void * memchr (return const void * s, int c, size_t n) pure ;
33
33
// /
34
- pure int memcmp(scope const void * s1, scope const void * s2, size_t n);
34
+ int memcmp (scope const void * s1, scope const void * s2, size_t n) pure ;
35
35
// /
36
- pure void * memcpy(return void * s1, scope const void * s2, size_t n);
36
+ void * memcpy (return void * s1, scope const void * s2, size_t n) pure ;
37
37
version (Windows )
38
38
{
39
39
// /
40
40
int memicmp (scope const char * s1, scope const char * s2, size_t n);
41
41
}
42
42
// /
43
- pure void * memmove(return void * s1, scope const void * s2, size_t n);
43
+ void * memmove (return void * s1, scope const void * s2, size_t n) pure ;
44
44
// /
45
- pure void * memset(return void * s, int c, size_t n);
45
+ void * memset (return void * s, int c, size_t n) pure ;
46
46
47
47
// /
48
- pure char * strcpy(return char * s1, scope const char * s2);
48
+ char * strcpy (return char * s1, scope const char * s2) pure ;
49
49
// /
50
- pure char * strncpy(return char * s1, scope const char * s2, size_t n);
50
+ char * strncpy (return char * s1, scope const char * s2, size_t n) pure ;
51
51
// /
52
- pure char * strcat(return char * s1, scope const char * s2);
52
+ char * strcat (return char * s1, scope const char * s2) pure ;
53
53
// /
54
- pure char * strncat(return char * s1, scope const char * s2, size_t n);
54
+ char * strncat (return char * s1, scope const char * s2, size_t n) pure ;
55
55
// /
56
- pure int strcmp(scope const char * s1, scope const char * s2);
56
+ int strcmp (scope const char * s1, scope const char * s2) pure ;
57
57
// /
58
58
int strcoll (scope const char * s1, scope const char * s2);
59
59
// /
60
- pure int strncmp(scope const char * s1, scope const char * s2, size_t n);
60
+ int strncmp (scope const char * s1, scope const char * s2, size_t n) pure ;
61
61
// /
62
62
size_t strxfrm (scope char * s1, scope const char * s2, size_t n);
63
63
// /
64
- pure inout (char )* strchr(return inout (char )* s, int c);
64
+ inout (char )* strchr (return inout (char )* s, int c) pure ;
65
65
// /
66
- pure size_t strcspn(scope const char * s1, scope const char * s2);
66
+ size_t strcspn (scope const char * s1, scope const char * s2) pure ;
67
67
// /
68
- pure inout (char )* strpbrk(return inout (char )* s1, scope const char * s2);
68
+ inout (char )* strpbrk (return inout (char )* s1, scope const char * s2) pure ;
69
69
// /
70
- pure inout (char )* strrchr(return inout (char )* s, int c);
70
+ inout (char )* strrchr (return inout (char )* s, int c) pure ;
71
71
// /
72
- pure size_t strspn(scope const char * s1, scope const char * s2);
72
+ size_t strspn (scope const char * s1, scope const char * s2) pure ;
73
73
// /
74
- pure inout (char )* strstr(return inout (char )* s1, scope const char * s2);
74
+ inout (char )* strstr (return inout (char )* s1, scope const char * s2) pure ;
75
75
// /
76
76
char * strtok (return char * s1, scope const char * s2);
77
77
// /
@@ -121,6 +121,6 @@ else version (CRuntime_UClibc)
121
121
const (char )* strerror_r (int errnum, return char * buf, size_t buflen);
122
122
}
123
123
// /
124
- pure size_t strlen(scope const char * s);
124
+ size_t strlen (scope const char * s) pure ;
125
125
// /
126
126
char * strdup (scope const char * s);
0 commit comments