J
Jona
I'm really struggling with being able to do a memcpy but in a special
way... I'm sure maybe there is some other mem... function to achive
this...
I need to copy everything except the few first bytes....
ex:
temp = abd9afd759a76e5d78a6; <- Copy this value only 4 bytes
after ....
//Using some function.... we process temp
print (temp); // afd759a76e5d78a6; <-And I would get this...
Using memcpy(temp2,temp,5); //would only copy "first" 5 bytes...
Hope you understand thanks!
-Jona
way... I'm sure maybe there is some other mem... function to achive
this...
I need to copy everything except the few first bytes....
ex:
temp = abd9afd759a76e5d78a6; <- Copy this value only 4 bytes
after ....
//Using some function.... we process temp
print (temp); // afd759a76e5d78a6; <-And I would get this...
Using memcpy(temp2,temp,5); //would only copy "first" 5 bytes...
Hope you understand thanks!
-Jona