stand_in.c (595B)
1 /* Why this file is needed: 2 * If the plugins are disabled, 3 * their conditionals will never resolve 4 * and their functionality never comes into play 5 * but the compiler still wants to know their type 6 */ 7 8 int libre_redirect(const char* uri, char* uri_filtered){ 9 return 0; 10 } 11 void str_init(char* str, int n){ 12 13 }; 14 15 int str_replace_start(const char* string, const char* target, 16 const char* replacement, char* output){ 17 return 1; 18 }; 19 20 void read_readability_js(char* string){ 21 22 } 23 24 void read_style_js(char* string){ 25 26 } 27 28 int shortcut_expand(const char* uri, char* output){ 29 return 0; 30 }