string.c 310 B

1234567891011121314151617181920212223242526
  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 "mph.h"
  11. G_BEGIN_DECLS
  12. guint64
  13. Mono_Posix_Stdlib_strlen (void* p)
  14. {
  15. return strlen ((const char*) p);
  16. }
  17. G_END_DECLS
  18. /*
  19. * vim: noexpandtab
  20. */