Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdlib.h>
  3.  
  4. int
  5. mblen(const char *s, size_t n)
  6. {
  7.   if (s)
  8.   {
  9.     if (n == 0 || *s == 0)
  10.       return 0;
  11.     return 1;
  12.   }
  13.   else
  14.     return 1;
  15. }
  16.