mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
15 lines
210 B
C
15 lines
210 B
C
/* $Id$
|
|
*/
|
|
/*
|
|
tgetopt -- POSIX-compliant implementation of getopt() with string-type-generic
|
|
semantics
|
|
|
|
This is public domain software
|
|
*/
|
|
|
|
#include <wchar.h>
|
|
|
|
#define _UNICODE
|
|
#include "getopt.c"
|
|
|
|
/* EOF */
|