X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Flocale%2Fsetlocale.c;fp=functions%2Flocale%2Fsetlocale.c;h=9b08b93bf1f11084ae73ab26b92eb13d08c19ba4;hb=37a19e428fd1e1b348e332fdc8ee759d13ebe88b;hp=0000000000000000000000000000000000000000;hpb=e883af7e93561cd536df68eaf837f523e3d2594b;p=pdclib.old diff --git a/functions/locale/setlocale.c b/functions/locale/setlocale.c new file mode 100644 index 0000000..9b08b93 --- /dev/null +++ b/functions/locale/setlocale.c @@ -0,0 +1,28 @@ +/* $Id$ */ + +/* setlocale( int, const char * ) + + 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 + +char * setlocale( int category, const char * locale ) +{ + return NULL; +} + +#endif + +#ifdef TEST +#include <_PDCLIB_test.h> + +int main( void ) +{ + TESTCASE( NO_TESTDRIVER ); + return TEST_RESULTS; +} +#endif