I have a small project i am doing that requires comparing the first byte of a stream. The problem is that that byte can be 0xe5 or any other non printable character, and thus denoting that that particular data is bad (reading it 32 bits at a time). The valid characters I can allow are A-Z, a-z, 0-9, '.' and space.

The current code is:

FILE* fileDescriptor; //assume this is already open and coming as an input to this function.
char entry[33];

if( fread(entry, sizeof(unsigned char), 32, fileDescriptor) != 32 )
{
    return -1; //error occured
}

entry[32] = '\0';  //set the array to be a "true" cstring.

int firstByte = (int)entry[0];

if( firstByte == 0 ){
    return -1;    //the entire 32 bit chunk is empty.
}

if( (firstByte & 0xe5) == 229 ){       //denotes deleted.
    return -1;    //denotes deleted.
}

So the problem is that when i tried to do the following:

if( firstByte >= 0 && firstByte <= 31 ){ //NULL to space in decimal ascii
    return -1;
}

if( firstByte >= 33 && firstByte <= 45 ){ // ! to - in decimal ascii
    return -1;
}

if( firstByte >= 58 && firstByte <= 64 ) { // : to @ in decimal ascii
    return -1;
}

if( firstByte >= 91 && firstByte <= 96 ) { // [ to ` in decimal ascii
    return -1;
}

if( firstByte >= 123 ){ // { and above in decimal ascii.
    return -1; 
}

it doesn't work. I see characters such as the one that denotes a black six sided diamond with a question mark inside of it... Theoretically it should've only let the following characters: Space (32), 0-9 (48-57), A-Z (65-90), a-z (97-122), but i don't know why it is not working properly.

I even tried using the functions in ctype.h -> iscntrl, isalnum, ispunct but that also didn't work.

Would anyone be able to help a fellow c newb with what I am assuming is a simple c problem? It would be greatly appreciated!

Thanks. Martin

link|improve this question

How can you possibly see that? Your code outputs nothing. – Ignacio Vazquez-Abrams Apr 26 '11 at 3:18
I only added the snippets that do processing. Not printing the output. While debugging I would have a printf("\n%s\n", entry); to see what happens after all if statements and i was able to verify what is being spit out. If any of the if statements worked, there would've not been any output because the return 0 (boolean) breaks the function and exists. The code would've never gotten to the printf statement. – bleepzter Apr 26 '11 at 3:30
why don't you use else if. It will save your processing time.Besides why are you writing ifs for the characters you don't want to use. I am sure the characters you want to use are fewer and will require fewer statements – Shweta Apr 26 '11 at 4:52
"else if" is highly unlikely to save processing time on any optimizing compiler. That said, it does make more sense from a semantic/readability view. – raylu Apr 26 '11 at 22:25
feedback

1 Answer

up vote 7 down vote accepted

I'm not sure why you are casting it to an int. Consider using one of the following:

if ((entry[0] >= 'A' && entry[0] <= 'Z') ||
    (entry[0] >= 'a' && entry[0] <= 'z') ||
    entry[0] == ' ' || entry[0] == '.')

or

#include <ctype.h>
if (isalnum(entry[0]) || entry[0] == ' ' || entry[0] == '.')
link|improve this answer
Don't use isalnum for this unless you want the behavior to vary by locale. For instance, isalnum(0xe5) may be 0 or 1. – R.. Apr 26 '11 at 3:30
1  
I don't know why the asker is casting either; char is a numeric type. – Ignacio Vazquez-Abrams Apr 26 '11 at 3:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.