compat_string.c 409 B

1234567891011121314
  1. /* Copyright (c) 2003-2004, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2018, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. #include "lib/string/compat_string.h"
  6. /* Inline the strl functions if the platform doesn't have them. */
  7. #ifndef HAVE_STRLCPY
  8. #include "strlcpy.c"
  9. #endif
  10. #ifndef HAVE_STRLCAT
  11. #include "strlcat.c"
  12. #endif