File: /home/django/libpff/tests/pff_test_name_to_id_map_entry.c
/*
* Library name_to_id_map_entry type testing program
*
* Copyright (C) 2008-2024, Joachim Metz <joachim.metz@gmail.com>
*
* Refer to AUTHORS for acknowledgements.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include <common.h>
#include <file_stream.h>
#include <types.h>
#if defined( HAVE_STDLIB_H ) || defined( WINAPI )
#include <stdlib.h>
#endif
#include "pff_test_libcerror.h"
#include "pff_test_libpff.h"
#include "pff_test_macros.h"
#include "pff_test_memory.h"
#include "pff_test_unused.h"
/* The main program
*/
#if defined( HAVE_WIDE_SYSTEM_CHARACTER )
int wmain(
int argc PFF_TEST_ATTRIBUTE_UNUSED,
wchar_t * const argv[] PFF_TEST_ATTRIBUTE_UNUSED )
#else
int main(
int argc PFF_TEST_ATTRIBUTE_UNUSED,
char * const argv[] PFF_TEST_ATTRIBUTE_UNUSED )
#endif
{
PFF_TEST_UNREFERENCED_PARAMETER( argc )
PFF_TEST_UNREFERENCED_PARAMETER( argv )
return( EXIT_SUCCESS );
on_error:
return( EXIT_FAILURE );
}