summaryrefslogtreecommitdiff
path: root/to.do/unicode/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'to.do/unicode/misc.c')
-rw-r--r--to.do/unicode/misc.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/to.do/unicode/misc.c b/to.do/unicode/misc.c
index b5b032d..d56d811 100644
--- a/to.do/unicode/misc.c
+++ b/to.do/unicode/misc.c
@@ -193,29 +193,6 @@ register int c;
}
-/* copy_unsigned_string -
- * returns a dynamically allocated copy of a (potentially) unsigned string
- */
-
-Char *copy_unsigned_string( str )
-register Char *str;
- {
- register Char *c;
- Char *copy;
-
- /* find length */
- for ( c = str; *c; ++c )
- ;
-
- copy = allocate_Character_array( c - str + 1 );
-
- for ( c = copy; (*c++ = *str++) != 0; )
- ;
-
- return copy;
- }
-
-
/* cshell - shell sort a character array in increasing order
*
* synopsis