Skip to content
Snippets Groups Projects
Select Git revision
  • 769fa2ee7549709d6103918f83f209d2524ec013
  • main default protected
  • v0.2.1
3 results

snatch.h

Blame
  • Forked from Zsombor Szabó-Antalovszky / Noémi Shell
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    snatch.h 218 B
    #ifndef __SNATCH_H
    #define __SNATCH_H
    
    #include <iostream>
    
    size_t write_data(void* ptr, size_t size, size_t nmemb, FILE* stream);
    bool download_file(const std::string& url, const std::string& output_filename);
    
    #endif