Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for cstring_pointer_fun (0.2 sec)

  1. src/cmd/cgo/internal/test/test.go

    // Calling this function used to fail without the cast.
    const int F17537(const char **p) {
    	return **p;
    }
    
    // issue 17723
    // API compatibility checks
    
    typedef char *cstring_pointer;
    static void cstring_pointer_fun(cstring_pointer dummy) { }
    const char *api_hello = "hello!";
    
    // Calling this function used to trigger an error from the C compiler
    // (issue 18298).
    void F18298(const void *const *p) {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top