File: jpeg.h

package info (click to toggle)
htp 1.11-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 316 kB
  • ctags: 429
  • sloc: ansic: 5,108; makefile: 55
file content (21 lines) | stat: -rw-r--r-- 411 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
//
// jpeg.h
//
// Copyright (c) 1995-96 Jim Nelson.  Permission to distribute
// granted by the author.  No warranties are made on the fitness of this
// source code.
//
*/

#ifndef JPEG_H
#define JPEG_H

/* is this a JPEG File Interchange Format (JFIF) file? */
BOOL JpegFormatFound(FILE *file);

/* one-shot-does-it-all function */
BOOL JpegReadDimensions(FILE *file, WORD *height, WORD *width);

#endif