]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StdLib/LibC/Stdio/wcio.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / StdLib / LibC / Stdio / wcio.h
diff --git a/StdLib/LibC/Stdio/wcio.h b/StdLib/LibC/Stdio/wcio.h
deleted file mode 100644 (file)
index ab15bb5..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-/* $NetBSD: wcio.h,v 1.3 2003/01/18 11:30:00 thorpej Exp $ */\r
-\r
-/*-\r
- * Copyright (c)2001 Citrus Project,\r
- * All rights reserved.\r
- *\r
- * Redistribution and use in source and binary forms, with or without\r
- * modification, are permitted provided that the following conditions\r
- * are met:\r
- * 1. Redistributions of source code must retain the above copyright\r
- *    notice, this list of conditions and the following disclaimer.\r
- * 2. Redistributions in binary form must reproduce the above copyright\r
- *    notice, this list of conditions and the following disclaimer in the\r
- *    documentation and/or other materials provided with the distribution.\r
- *\r
- * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\r
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r
- * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\r
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\r
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\r
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\r
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\r
- * SUCH DAMAGE.\r
- *\r
- * $Citrus$\r
- */\r
-\r
-#ifndef _WCIO_H_\r
-#define _WCIO_H_\r
-\r
-#include <wchar.h> /* for mbstate_t and wchar_t */\r
-\r
-/* minimal requirement of SUSv2 */\r
-#define WCIO_UNGETWC_BUFSIZE 1\r
-\r
-#define WCIO_GET(fp) (&(_EXT(fp)->_wcio))\r
-\r
-struct wchar_io_data {\r
-  mbstate_t wcio_mbstate_in;\r
-  mbstate_t wcio_mbstate_out;\r
-\r
-  wchar_t wcio_ungetwc_buf[WCIO_UNGETWC_BUFSIZE];\r
-  size_t wcio_ungetwc_inbuf;\r
-\r
-  int wcio_mode; /* orientation */\r
-};\r
-\r
-#define _SET_ORIENTATION(fp, mode) \\r
-do {\\r
-  struct wchar_io_data *_wcio = WCIO_GET(fp);\\r
-  if (_wcio && _wcio->wcio_mode == 0)\\r
-    _wcio->wcio_mode = (mode);\\r
-} while (/*CONSTCOND*/0)\r
-\r
-/*\r
- * WCIO_FREE should be called by fclose\r
- */\r
-#define WCIO_FREE(fp) \\r
-do {\\r
-  _EXT(fp)->_wcio.wcio_mode = 0;\\r
-  WCIO_FREEUB(fp);\\r
-} while (/*CONSTCOND*/0)\r
-\r
-#define WCIO_FREEUB(fp) \\r
-do {\\r
-  _EXT(fp)->_wcio.wcio_ungetwc_inbuf = 0;\\r
-} while (/*CONSTCOND*/0)\r
-\r
-#endif /*_WCIO_H_*/\r