#include "isogram.h" #include #include #include #include #define NULL ((void*)0) bool is_isogram(const char phrase[]) { bool bOgram = false; if(phrase==NULL) { bOgram = true; goto End; } char *pPhrase = NULL; if(phrase[0]=='\0') goto End; int len = strlen(phrase); if(len<2) goto End; pPhrase = (char * )malloc(len*sizeof(char)); for(int i=0;i