pforth: improve 64-bit support
[pforth] / csrc / pf_text.h
index 05431d7..9918fe3 100644 (file)
@@ -54,8 +54,9 @@ void pfReportThrow( ThrowCode code );
 char  *ForthStringToC( char *dst, const char *FString, cell_t dstSize );
 char  *CStringToForth( char *dst, const char *CString, cell_t dstSize  );
 
 char  *ForthStringToC( char *dst, const char *FString, cell_t dstSize );
 char  *CStringToForth( char *dst, const char *CString, cell_t dstSize  );
 
-cell_t ffCompare( const char *s1, cell_t len1, const char *s2, int32_t len2 );
-cell_t ffCompareText( const char *s1, const char *s2, cell_t len );
+cell_t ffCompare(const char *s1, cell_t len1,
+                 const char *s2, cell_t len2 );
+cell_t ffCompareText(const char *s1, const char *s2, cell_t len );
 cell_t ffCompareTextCaseN( const char *s1, const char *s2, cell_t len );
 
 void  DumpMemory( void *addr, cell_t cnt);
 cell_t ffCompareTextCaseN( const char *s1, const char *s2, cell_t len );
 
 void  DumpMemory( void *addr, cell_t cnt);