I'm needing to take a binary string start at a certain position and return a
pointer from that postion to the end of the binary stirng.
something like this:
char bstr[2048];
char *pos;
pos=mid(bstr,35 ); / *return a pointer of the rest of the binary string
starting at element 35 */
Any help showing me how I can do this? I don't know how I can do a char
*mid(bstr,ele)
Thanks,
jt
pointer from that postion to the end of the binary stirng.
something like this:
char bstr[2048];
char *pos;
pos=mid(bstr,35 ); / *return a pointer of the rest of the binary string
starting at element 35 */
Any help showing me how I can do this? I don't know how I can do a char
*mid(bstr,ele)
Thanks,
jt
Comment