2 * Copyright 2005, Ingo Weinhold <bonefish@cs.tu-berlin.de>.
3 * Copyright 2010, Oliver Tappe, zooey@hirschkaefer.de.
4 * All rights reserved. Distributed under the terms of the MIT license.
10 #include <errno_private.h>
11 #include "LocaleBackend.h"
14 using BPrivate::Libroot::gLocaleBackend
;
18 strxfrm(char *out
, const char *in
, size_t size
)
20 if (gLocaleBackend
!= NULL
) {
22 status_t status
= gLocaleBackend
->Strxfrm(out
, in
, size
, outSize
);
30 return strlcpy(out
, in
, size
);