Sandy Ganz wrote: > The best optimization > would be not to call the function and just make the compare inlined :-) With reasonably recent GCC versions (certainly with 3.2, and probably with earlier versions), unless you specify -fno-builtin I believe that functions such as strcmp() will be inlined. Other compilers probably inline such functions too. -- Richard