1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
/*
* 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 <stdio.h>
// 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);
|