string.c 327 B

123456789101112131415161718192021222324252627
  1. /*
  2. * <string.h> wrapper functions.
  3. *
  4. * Authors:
  5. * Jonathan Pryor ([email protected])
  6. *
  7. * Copyright (C) 2005 Jonathan Pryor
  8. */
  9. #include <string.h>
  10. #include "map.h"
  11. #include "mph.h"
  12. G_BEGIN_DECLS
  13. guint64
  14. Mono_Posix_Stdlib_strlen (void* p)
  15. {
  16. return strlen ((const char*) p);
  17. }
  18. G_END_DECLS
  19. /*
  20. * vim: noexpandtab
  21. */