Posts: 17
Threads: 6
Joined: Mar 2013
Reputation:
0
Hello guyz, i have problem with my sscanf.so file, i donwloaded new version for 0.3x ,but its specifiers do not requiere % before something like this : s, d, n, etc. (i need get sscanf which requieres this: %s;%d;%n etc,) And older versions wont work on my server, so i came here to ask, can anyone help me, and make sscanf.so for 0.3x with old specifiers?
Posts: 17
Threads: 6
Joined: Mar 2013
Reputation:
0
BUMPP. Common, i need it ;/
Posts: 882
Threads: 50
Joined: Jun 2012
Reputation:
0
-_- Nice crap you have got stuck into!!!
Why do you need a new sscanf plugin to accept % specifiers when you have alternate better choice.Why not you change all your code to the new sscanf then the next release will also(most probably) work or once again you will come up asking for a new sscanf after the next release.
Solution:
You write a small interpreter which will search for %s inside a string and replace it with s
Can be done but with a big array or using VC++ string functions(it will size itself according to it so no problems or buffer overflow or so).