source: buchla-68k/ram/dbentr.x@ 526a993

Last change on this file since 526a993 was 526a993, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Wording change.

  • Property mode set to 100644
File size: 927 bytes
Line 
1/*
2 =============================================================================
3 dbentr.c -- external declarations
4 =============================================================================
5*/
6
7#pragma once
8
9#include "stdint.h"
10
11/*
12 =============================================================================
13 external variables
14 =============================================================================
15*/
16
17extern int16_t DB_Flag;
18extern int16_t DB_In;
19extern int8_t *DB_Last;
20extern int32_t DB_Levl;
21extern int16_t DB_Out;
22extern int8_t *DB_Type[];
23
24/*
25 =============================================================================
26 external functions
27 =============================================================================
28*/
29
30extern void DB_Clr(void);
31extern void DB_Cmnt(int8_t *str);
32extern void DB_Dump(void);
33extern void DB_Entr(int8_t *str);
34extern void DB_Exit(int8_t *str);
Note: See TracBrowser for help on using the repository browser.