Skip to content
HttpResponseDeinit

HttpResponseDeinit

Description

Release storage owned by response and zero the struct.

Usage example (Cross-references)

Usage examples (Cross-references)
    
        StrDeinit(&wire);
        HttpResponseDeinit(&response);
        DefaultAllocatorDeinit(&alloc);
        return ok;
    }
    
    void HttpResponseDeinit(HttpResponse *response) {
        if (!response) {
            LOG_FATAL("invalid arguments");
Last updated on