Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for strcasecmp (0.19 sec)

  1. build/pause/linux/pause.c

      exit(0);
    }
    
    static void sigreap(int signo) {
      while (waitpid(-1, NULL, WNOHANG) > 0)
        ;
    }
    
    int main(int argc, char **argv) {
      int i;
      for (i = 1; i < argc; ++i) {
        if (!strcasecmp(argv[i], "-v")) {
          printf("pause.c %s\n", VERSION_STRING(VERSION));
          return 0;
        }
      }
    
      if (getpid() != 1)
        /* Not an error because pause sees use outside of infra containers. */
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 26 13:26:24 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
    
      // Compares two C strings, ignoring case.  Returns true iff they
      // have the same content.
      //
      // Unlike strcasecmp(), this function can handle NULL argument(s).
      // A NULL C string is considered different to any non-NULL C string,
      // including the empty string.
      static bool CaseInsensitiveCStringEquals(const char* lhs,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
    
      // Compares two C strings, ignoring case.  Returns true iff they
      // have the same content.
      //
      // Unlike strcasecmp(), this function can handle NULL argument(s).
      // A NULL C string is considered different to any non-NULL C string,
      // including the empty string.
      static bool CaseInsensitiveCStringEquals(const char* lhs,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    inline int FileNo(FILE* file) { return fileno(file); }
    inline int IsATTY(int fd) { return isatty(fd); }
    inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
    inline int StrCaseCmp(const char* s1, const char* s2) {
      return strcasecmp(s1, s2);
    }
    inline char* StrDup(const char* src) { return strdup(src); }
    inline int RmDir(const char* dir) { return rmdir(dir); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    inline int FileNo(FILE* file) { return fileno(file); }
    inline int IsATTY(int fd) { return isatty(fd); }
    inline int Stat(const char* path, StatStruct* buf) { return stat(path, buf); }
    inline int StrCaseCmp(const char* s1, const char* s2) {
      return strcasecmp(s1, s2);
    }
    inline char* StrDup(const char* src) { return strdup(src); }
    inline int RmDir(const char* dir) { return rmdir(dir); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top