8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 10:00:38 +01:00

On behalf of mapopa after sourceforge crash - IUTILS_blankterm2 replaced with fb_utils::exact_name (NOT_USED_OR_REPLACED)

This commit is contained in:
asfernandes 2015-07-26 15:36:46 +00:00
parent 602ed74e83
commit 9d17b48cab
2 changed files with 0 additions and 19 deletions

View File

@ -39,22 +39,6 @@
using MsgFormat::SafeArg;
#ifdef NOT_USED_OR_REPLACED
// Same as fb_utils::exact_name, but writes the output to the second argument.
TEXT* IUTILS_blankterm2(const TEXT* input, TEXT* output)
{
TEXT* q = output - 1;
for (TEXT* p = output; (*p = *input) != 0; ++p, ++input)
{
if (*p != BLANK)
q = p;
}
*(q + 1) = 0;
return output;
}
#endif
void IUTILS_copy_SQL_id(const TEXT* in_str, TEXT* output_str, TEXT escape_char)
{
/**************************************

View File

@ -27,9 +27,6 @@
#include "../common/classes/SafeArg.h"
#include <stdio.h>
#ifdef NOT_USED_OR_REPLACED
TEXT* IUTILS_blankterm2(const TEXT* input, TEXT* output);
#endif
void IUTILS_copy_SQL_id(const TEXT*, TEXT*, TEXT);
void IUTILS_make_upper(TEXT*);
void IUTILS_msg_get(USHORT number, TEXT* msg,