X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Flocale%2Flocaleconv.c;fp=functions%2Flocale%2Flocaleconv.c;h=e23fb6a3585d7f6f21398aa18a077d7f7a0dc267;hb=37a19e428fd1e1b348e332fdc8ee759d13ebe88b;hp=0000000000000000000000000000000000000000;hpb=e883af7e93561cd536df68eaf837f523e3d2594b;p=pdclib.old diff --git a/functions/locale/localeconv.c b/functions/locale/localeconv.c new file mode 100644 index 0000000..e23fb6a --- /dev/null +++ b/functions/locale/localeconv.c @@ -0,0 +1,28 @@ +/* $Id$ */ + +/* localeconv( void ) + + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ + +#include + +#ifndef REGTEST + +struct lconv * localeconv( void ) +{ + return &_PDCLIB_lconv; +} + +#endif + +#ifdef TEST +#include <_PDCLIB_test.h> + +int main( void ) +{ + TESTCASE( NO_TESTDRIVER ); + return TEST_RESULTS; +} +#endif