Advertisement
Johurt

[FNC] SameText

Nov 2nd, 2015
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.28 KB | None | 0 0
  1. // by Johurt
  2. #define SameText(%0,%1,%2) (isnull(%0) || isnull(%1) ? false : (strcmp(%0, %1, %2) != 0 ? false : true)) // with ignorecase (optional)
  3. #define SameText(%0,%1) (isnull(%0) || isnull(%1) ? false : (strcmp(%0, %1, true) != 0 ? false : true)) // ignorecase (optional) set true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement