File: fs_jpg.h

package info (click to toggle)
neverball 1.6.0%2Bgit20180603-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 152,380 kB
  • sloc: ansic: 27,402; makefile: 454; cpp: 208; xml: 177; sh: 161
file content (17 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef FS_JPG
#define FS_JPG

/*
 * jpeglib.h triggers errors due to missing size_t and FILE type
 * definitions.  Include these two headers as a workaround.
 */

#include <stddef.h>
#include <stdio.h>
#include <jpeglib.h>

#include "fs.h"

void fs_jpg_src(j_decompress_ptr cinfo, fs_file infile);

#endif