#ifndef TDKPIN_STRINGS_H #define TDKPIN_STRINGS_H #include "tdkpin_borland_runtime.h" uint16_t borland_far_strlen(Win16FarPtr string); Win16FarPtr borland_far_strend(Win16FarPtr string); Win16FarPtr borland_far_memmove( Win16FarPtr destination, Win16FarPtr source, uint16_t count); Win16FarPtr borland_far_strcpy(Win16FarPtr destination, Win16FarPtr source); Win16FarPtr borland_far_strncpy( Win16FarPtr destination, Win16FarPtr source, uint16_t maximum); Win16FarPtr borland_short_to_c_string( Win16FarPtr destination, Win16FarPtr short_string); Win16FarPtr borland_far_strcat(Win16FarPtr destination, Win16FarPtr source); int16_t borland_far_strnicmp( Win16FarPtr first, Win16FarPtr second, uint16_t maximum); Win16FarPtr borland_far_strchr(Win16FarPtr string, uint8_t character); Win16FarPtr borland_far_strrchr(Win16FarPtr string, uint8_t character); void borland_c_to_short_string(Win16FarPtr destination, Win16FarPtr source); Win16FarPtr borland_far_strdup(Win16FarPtr source); void borland_far_strdispose(Win16FarPtr string); void borland_far_copy( Win16FarPtr destination, Win16FarPtr source, uint16_t count); #endif