/*- * Copyright (c) 2003, 2005 Allan Saddi * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY ALLAN SADDI AND HIS CONTRIBUTORS ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL ALLAN SADDI OR HIS CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * $Id: common.h 1816 2005-09-02 00:14:04Z asaddi $ */ #ifndef _YAFIC_COMMON_H #define _YAFIC_COMMON_H #if HAVE_INTTYPES_H # include #else # if HAVE_STDINT_H # include # endif #endif #define HASH_BUFFER_SIZE 65536 extern const char *prog; extern uint8_t *HashBuffer; void *mymalloc (size_t size); char *mystrdup (const char *str); char *mydirname (const char *path); void yaficError (const char *what); void yaficWarning (const char *what); #ifndef HAVE_DIRNAME char *dirname (const char *path); #endif /* !HAVE_DIRNAME */ #ifndef HAVE_STRLCAT size_t strlcat (char *dst, const char *src, size_t siz); #endif /* !HAVE_STRLCAT */ #ifndef HAVE_STRLCPY size_t strlcpy (char *dst, const char *src, size_t siz); #endif /* !HAVE_STRLPY */ #endif /* _YAFIC_COMMON_H */