28 lines
1.0 KiB
C
28 lines
1.0 KiB
C
|
/*
|
||
|
* Copyright (C) 2013-2022 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
|
||
|
* Copyright (C) 2011-2013 Sourcefire, Inc.
|
||
|
* Copyright (C) 1995-2007 by Alexander Lehmann <lehmann@usa.net>,
|
||
|
* Andreas Dilger <adilger@enel.ucalgary.ca>,
|
||
|
* Glenn Randers-Pehrson <randeg@alum.rpi.edu>,
|
||
|
* Greg Roelofs <newt@pobox.com>,
|
||
|
* John Bowler <jbowler@acm.org>,
|
||
|
* Tom Lane <tgl@sss.pgh.pa.us>
|
||
|
*
|
||
|
* Permission to use, copy, modify, and distribute this software and its
|
||
|
* documentation for any purpose and without fee is hereby granted, provided
|
||
|
* that the above copyright notice appear in all copies and that both that
|
||
|
* copyright notice and this permission notice appear in supporting
|
||
|
* documentation. This software is provided "as is" without express or
|
||
|
* implied warranty.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __PNG_H
|
||
|
#define __PNG_H
|
||
|
|
||
|
#include "others.h"
|
||
|
|
||
|
cl_error_t cli_parsepng(cli_ctx *ctx);
|
||
|
|
||
|
#endif
|