bianchi77
Advanced Member level 4
- Joined
- Jun 11, 2009
- Messages
- 1,313
- Helped
- 21
- Reputation
- 44
- Reaction score
- 20
- Trophy points
- 1,318
- Location
- California
- Activity points
- 9,442
Guys,
I want to try finding a text in file :
After I find the text, how can I determine the location of "TEXT" ?
For example it's located on 0x100, how can I know that ?
f_read and then fseek ? or something else, I haven't caught the idea.....
Any thoughts ?
Thanks
I want to try finding a text in file :
Code:
char line[512];
i=512;
if (strncmp("TEXT", (line[0]+i), 4))
After I find the text, how can I determine the location of "TEXT" ?
For example it's located on 0x100, how can I know that ?
f_read and then fseek ? or something else, I haven't caught the idea.....
Any thoughts ?
Thanks