From e611b132f9b8abe35b362e5870b74bce94a1e58e Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 16 May 2020 20:51:50 -0700 Subject: initial commit --- private/crt32/lowio/txtmode.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 private/crt32/lowio/txtmode.c (limited to 'private/crt32/lowio/txtmode.c') diff --git a/private/crt32/lowio/txtmode.c b/private/crt32/lowio/txtmode.c new file mode 100644 index 000000000..b40b0db61 --- /dev/null +++ b/private/crt32/lowio/txtmode.c @@ -0,0 +1,19 @@ +/*** +*txtmode.c - set global text mode flag +* +* Copyright (c) 1989-1992, Microsoft Corporation. All rights reserved. +* +*Purpose: +* Sets the global file mode to text. This is the default. +* +*Revision History: +* 06-08-89 PHG Module created, based on asm version. +* 04-04-90 GJF Added #include . Also, fixed the copyright. +* 01-23-92 GJF Added #include (contains decl of _fmode). +* +*******************************************************************************/ + +#include +#include + +int _fmode = 0; /* set text mode */ -- cgit v1.2.3