]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/tokyo/alien/tcutil/tcutil.factor
rename current string-mangling "char*" to "c-string". char* is now just a boring...
[factor.git] / extra / tokyo / alien / tcutil / tcutil.factor
index 7cb6c5e09218bf170491e1ba343a00491f445408..afb78dba228ec02a1b44713ecb267adbde91d30b 100644 (file)
@@ -28,9 +28,9 @@ FUNCTION: TCLIST* tclistnew2 ( int anum ) ;
 FUNCTION: void tclistdel ( TCLIST* list ) ;
 FUNCTION: int tclistnum ( TCLIST* list ) ;
 FUNCTION: void* tclistval ( TCLIST* list, int index, int* sp ) ;
-FUNCTION: char* tclistval2 ( TCLIST* list, int index ) ;
+FUNCTION: c-string tclistval2 ( TCLIST* list, int index ) ;
 FUNCTION: void tclistpush ( TCLIST* list, void* ptr, int size ) ;
-FUNCTION: void tclistpush2 ( TCLIST* list, char* str ) ;
+FUNCTION: void tclistpush2 ( TCLIST* list, c-string str ) ;
 FUNCTION: void tcfree ( void* ptr ) ;
 
 TYPEDEF: void* TCCMP