#include <string.h>

Go to the source code of this file.
Functions | |
| int | TestFUNCTION () |
| int | main () |
| int main | ( | ) |
Definition at line 34 of file bbtkTestFUNCTION.cxx.
References TestFUNCTION().
00035 { 00036 return TestFUNCTION(); 00037 }

| int TestFUNCTION | ( | ) |
Definition at line 22 of file bbtkTestFUNCTION.cxx.
Referenced by main().
00023 { 00024 #ifdef __BORLANDC__ 00025 #ifndef __FUNCTION__ 00026 #define __FUNCTION__ __FUNC__ 00027 #endif 00028 #endif 00029 const char *f = __FUNCTION__; 00030 int r = strcmp( "TestFUNCTION", f); 00031 return r; 00032 }

1.5.7.1