My main program uses a variable that stores the pointer to a byte.
How would I define that in the header?
My main program uses a variable that stores the pointer to a byte.
How would I define that in the header?
Byte is not a standard type but on many system any unsigned char will do the job on windows which I am more familiar there is a typedef for BYTE which is available in the windows headders
If you are writing something which relates to generic programming,you should use the void *. for most of the systems though you can use unsigned char *.