Code:
#include <ctype.h>

int isspace(int c);
if I would use a pointer into isspace function it should be an int or char pointer?
Code:
if (isspace(*mypointer))
...