summaryrefslogtreecommitdiff
path: root/reference/C/CONTRIB/SNIP/break.c
diff options
context:
space:
mode:
Diffstat (limited to 'reference/C/CONTRIB/SNIP/break.c')
-rwxr-xr-xreference/C/CONTRIB/SNIP/break.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/reference/C/CONTRIB/SNIP/break.c b/reference/C/CONTRIB/SNIP/break.c
new file mode 100755
index 0000000..6334255
--- /dev/null
+++ b/reference/C/CONTRIB/SNIP/break.c
@@ -0,0 +1,29 @@
+/*
+** Set or determine the status of the DOS "SET BREAK=" command
+*/
+
+#include <dos.h>
+
+#define BOOL(x) (!(!(x)))
+
+/*
+** Returns status of DOS "SET BREAK" command
+*/
+
+int isBreakOn(void)
+{
+ union REGS regs;
+
+ regs.x.ax = 0x3300;
+ intdos(&regs, &regs);
+ return (int)regs.h.dl;
+}
+
+void setBreak(int OnOff) /* Off = 0, On = 1 */
+{
+ union REGS regs;
+
+ regs.x.ax = 0x3301;
+ regs.h.dl = OnOff;
+ intdos(&regs, &regs);
+}