cake
/
libcasio
Archived
1
1
Fork 0
This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
libcasio/lib/internals.h

120 lines
3.5 KiB
C

/* ****************************************************************************
* internals.h -- libcasio main internal header.
* Copyright (C) 2017 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
*
* This file is part of libcasio.
* libcasio 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.0 of the License,
* or (at your option) any later version.
*
* libcasio 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with libcasio; if not, see <http://www.gnu.org/licenses/>.
* ************************************************************************* */
#ifndef LOCAL_INTERNALS_H
# define LOCAL_INTERNALS_H 2018051701
# define _DEFAULT_SOURCE /* XXX: glibc hacking */
# define _POSIX_C_SOURCE 199309L
# include <libcasio.h>
# include <libcasio/format.h>
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# include <ctype.h>
# include "utils/endian.h"
# include "log/log.h"
/* ---
* Platform-specific stuff.
* --- */
/* MS-Windows stuff */
# if (defined(_WIN16) || defined(_WIN32) || defined(_WIN64)) \
&& !defined(__WINDOWS__)
# define __WINDOWS__
# endif
/* Standard library macros. */
# ifndef min
# define min(CASIO__A, CASIO__B) \
((CASIO__A) < (CASIO__B) ? (CASIO__A) : (CASIO__B))
# endif
# ifndef max
# define max(CASIO__A, CASIO__B) \
((CASIO__A) > (CASIO__B) ? (CASIO__A) : (CASIO__B))
# endif
# ifndef abs
# define abs(CASIO__A) \
((CASIO__A) < 0 ? -(CASIO__A) : (CASIO__A))
# endif
/* ---
* Built-in streams.
* --- */
/* Make a stream using the standard FILE interface. */
# ifndef LIBCASIO_DISABLED_FILE
CASIO_EXTERN int CASIO_EXPORT casio_open_stream_file
OF((casio_stream_t **casio__stream,
FILE *casio__readstream, FILE *casio__writestream,
int casio__close_readstream, int casio__close_writestream));
# endif
/* ---
* Built-in filesystems.
* --- */
/* Make a POSIX filesystem interface. */
# ifndef LIBCASIO_DISABLED_STREAMS
CASIO_EXTERN int CASIO_EXPORT casio_open_posix_fs
OF((casio_fs_t **casio__filesystem));
# endif
/* Make a Windows API filesystem interface. */
# ifndef LIBCASIO_DISABLED_WINDOWS
CASIO_EXTERN int CASIO_EXPORT casio_open_windows_fs
OF((casio_fs_t **casio__filesystem));
# endif
/* ---
* Various.
* --- */
/* Checksum. */
extern int casio_checksum_cas OF((void *casio__mem,
size_t casio__size, int casio__current));
extern int casio_checksum_sub OF((void *casio__mem,
size_t casio__size, int casio__current));
extern casio_uint32_t casio_checksum32 OF((void *casio__mem,
size_t casio__size, casio_uint32_t casio__current));
/* Extension. */
extern int casio_getext OF((const char *casio__path,
char *casio__buf, size_t casio__n));
/* ASCII-HEX, ASCII-DEC utilities */
CASIO_EXTERN void CASIO_EXPORT casio_putascii
OF((unsigned char *casio__p, unsigned long casio__i, int casio__n));
CASIO_EXTERN unsigned long CASIO_EXPORT casio_getascii
OF((const unsigned char *casio__p, int casio__n));
CASIO_EXTERN unsigned long CASIO_EXPORT casio_getdec
OF((unsigned long casio__h));
CASIO_EXTERN unsigned long CASIO_EXPORT casio_gethex
OF((unsigned long casio__d));
#endif /* LOCAL_INTERNALS_H */