mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.0 KiB
27 lines
1.0 KiB
/*
|
|
* Copyright (C) 2013-2025 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
|
|
|