# File lib/windows/msvcrt/string.rb, line 26
         def strcmp(str1, str2)
            if str1 == 0 || str2 == 0
               return nil
            end
            Strcmp.call(str1, str2)
         end