Tachyon (current)  Current Main Branch
jpeg.h
Go to the documentation of this file.
1 /*
2  * jpeg.h - This file deals with JPEG format image files (reading/writing)
3  *
4  * (C) Copyright 1994-2022 John E. Stone
5  * SPDX-License-Identifier: BSD-3-Clause
6  *
7  * $Id: jpeg.h,v 1.4 2022/02/18 17:55:28 johns Exp $
8  *
9  */
10 
11 int readjpeg(const char *name, int *xres, int *yres, unsigned char **imgdata);
12 int writejpeg(const char *name, int xres, int yres, unsigned char *imgdata);
int readjpeg(const char *name, int *xres, int *yres, unsigned char **imgdata)
Definition: jpeg.c:29
int writejpeg(const char *name, int xres, int yres, unsigned char *imgdata)
Definition: jpeg.c:33