summaryrefslogtreecommitdiff
path: root/src/string/strxfrm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strxfrm.c')
-rw-r--r--src/string/strxfrm.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/string/strxfrm.c b/src/string/strxfrm.c
index eb4a6d15..c107d662 100644
--- a/src/string/strxfrm.c
+++ b/src/string/strxfrm.c
@@ -2,6 +2,7 @@
#include "_assert.h"
/** transform string **/
+
size_t strxfrm(char * restrict s1, const char * restrict s2, size_t n)
{
/* TODO */
@@ -25,8 +26,6 @@ transformed, no further characters are transformed.
/*
UNDEFINED(ARGUMENT(n) is not ZERO and ARGUMENT(s1) is CONSTANT(NULL))
-*/
-/*
- RETURN_ALWAYS(the length of the transformed string, not including the terminating CHAR(\0));
+RETURN_ALWAYS(the length of the transformed string, not including the terminating CHAR(\0));
STDC(1)
*/