From d5b6ad2f98bf06c39057ce83d6f9db4fbbaac566 Mon Sep 17 00:00:00 2001 From: Andi Jahja Date: Thu, 22 Nov 2001 12:33:40 +0000 Subject: [PATCH] Andi Jahja --- harbour/ChangeLog | 4 ++++ harbour/include/hbapi.h | 1 + 2 files changed, 5 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7cb5c05aaa..8fa7c8b402 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,7 @@ +2001-11-22 19:55 GMT+0700 Andi Jahja + * include/hbapi.h + + add declaration char * hb_strncpyUpperTrim() + 2001-11-21 17:45 UTC-0800 Brian Hays * source/rtl/strcase.c diff --git a/harbour/include/hbapi.h b/harbour/include/hbapi.h index 9c53fb9c92..2879f2fd66 100644 --- a/harbour/include/hbapi.h +++ b/harbour/include/hbapi.h @@ -411,6 +411,7 @@ extern ULONG hb_strAt( const char * szSub, ULONG ulSubLen, const char * szTex extern char * hb_strUpper( char * szText, ULONG ulLen ); /* convert an existing string buffer to upper case */ extern char * hb_strLower( char * szText, ULONG ulLen ); /* convert an existing string buffer to lower case */ extern char * hb_strncpyUpper( char * pDest, const char * pSource, ULONG ulLen ); /* copy an existing string buffer to another buffer, as upper case */ +extern char * hb_strncpyUpperTrim( char * pDest, const char * pSource, ULONG ulLen ); extern double hb_strVal( const char * szText, ULONG ulLen ); /* return the numeric value of a character string representation of a number */ extern char * hb_strLTrim( const char * szText, ULONG * ulLen ); /* return a pointer to the first non-white space character */ extern ULONG hb_strRTrimLen( const char * szText, ULONG ulLen, BOOL bAnySpace ); /* return length of a string, ignoring trailing white space (or true spaces) */