Advertisement
BumbleBritches57

Safe Sprintf

Sep 13th, 2016
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. sprintf(...) { // Original sprintf here
  2. ...
  3. }
  4.  
  5. sprintf_s(..., size_t BufferSize) { // new "safe" sprintf here
  6. ...
  7. }
  8.  
  9. MySprintf(...) { // What I mean here
  10. ...
  11. size_t BufferSize = strlen(string1);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement