> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of
> [EMAIL PROTECTED]
> Sent: 20 January 2000 20:48
> Subject: Re: ANSI standards
>
> The implementation of these UT functions should aim at correctness first
> and speed second; these string functions are called a LOT in a word
> processor. If we can find a way to #define these implementations to
> standard C library implementations (instead of calling them from our
> own functions), we'll gain on speed.
Does anyone know the reason we're implemening strcmp(...) as an intermediate
function, UT_strcmp(...), and putting the code in the platform-specific cpp
files (strcmp(...) /is/ ANSI)?
I'm planning to take out the platform-specific versions and simply #define
UT_strcmp(x, y) to strcmp(x, y) if no-one can think of a reason why I
shouldn't.
Jamie