Edit

kc3-lang/libevent/strlcpy-internal.h

Branch :

  • Show log

    Commit

  • Author : Niels Provos
    Date : 2007-03-01 06:25:18
    Hash : b5d2f9a2
    Message : rolling back r339: evconfig.h does not work svn:r341

  • strlcpy-internal.h
  • #ifndef _STRLCPY_INTERNAL_H_
    #define _STRLCPY_INTERNAL_H_
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    #ifdef HAVE_CONFIG_H
    #include "config.h"
    #endif /* HAVE_CONFIG_H */
    
    #ifndef HAVE_STRLCPY
    #include <string.h>
    size_t _event_strlcpy(char *dst, const char *src, size_t siz);
    #define strlcpy _event_strlcpy
    #endif
    
    #ifdef __cplusplus
    }
    #endif
    
    #endif