/* * Copyright (C) 2006 Christian Stigen Larsen, http://csl.sublevel3.org * Distributed under the GNU General Public License (GPL) v2. * * Project homepage on http://jp2a.sf.net * * $Id: jp2a.h 439 2006-09-01 10:52:47Z csl $ */ #include // curl.c #ifdef FEAT_CURL int is_url(const char* s); int curl_download(const char* url, const int debug); #endif // html.c void print_html_start(const int fontsize, FILE *fout); void print_html_end(FILE *fout); void print_html_char(FILE *fout, const char ch, const int red_fg, const int green_fg, const int blue_fg, const int red_bg, const int green_bg, const int blue_bg); void print_html_newline(FILE *fout); // image.c void decompress(FILE *fin, FILE *fout); // options.c void parse_options(int argc, char** argv); // term.c int get_termsize(int* width_, int* height_, char** error);