15 lines
184 B
C
15 lines
184 B
C
#include "y_test_h.h"
|
|
|
|
IMPLEMENTATION_TOOLS()
|
|
|
|
int main(){
|
|
|
|
char *a="Heyyy";
|
|
char *b="Hello";
|
|
|
|
printf(" %s vs %s = %d \n",a,b,COMPARE_N_TYPE_STRING(&a,&b));
|
|
|
|
|
|
return 0;
|
|
}
|