Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FOpen (0.03 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // defined there.
    
    #if !GTEST_OS_WINDOWS_MOBILE
    inline int ChDir(const char* dir) { return chdir(dir); }
    #endif
    inline FILE* FOpen(const char* path, const char* mode) {
      return fopen(path, mode);
    }
    #if !GTEST_OS_WINDOWS_MOBILE
    inline FILE *FReopen(const char* path, const char* mode, FILE* stream) {
      return freopen(path, mode, stream);
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // defined there.
    
    #if !GTEST_OS_WINDOWS_MOBILE
    inline int ChDir(const char* dir) { return chdir(dir); }
    #endif
    inline FILE* FOpen(const char* path, const char* mode) {
      return fopen(path, mode);
    }
    #if !GTEST_OS_WINDOWS_MOBILE
    inline FILE *FReopen(const char* path, const char* mode, FILE* stream) {
      return freopen(path, mode, stream);
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. src/regexp/testdata/testregex.c

    	while (state.file = *argv++)
    	{
    		if (streq(state.file, "-") || streq(state.file, "/dev/stdin") || streq(state.file, "/dev/fd/0"))
    		{
    			state.file = 0;
    			fp = stdin;
    		}
    		else if (!(fp = fopen(state.file, "r")))
    		{
    			fprintf(stderr, "%s: %s: cannot read\n", unit, state.file);
    			return 2;
    		}
    		testno = state.errors = state.ignored = state.lineno = state.passed =
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
Back to top