Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 25th, 2012  |  syntax: C  |  size: 0.13 KB  |  hits: 6  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. {
  2.         while (*s1 == *s2++)
  3.                 if (*s1++ == 0)
  4.                         return (0);
  5.         return (*(const unsigned char *)s1 - *(const unsigned char *)(s2 - 1));
  6. }