-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlc3tools.h
63 lines (53 loc) · 2.07 KB
/
lc3tools.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*
* lc3tools - An implementation of the LC-3 ISA and assorted tools. *
* Copyright (C) 2018-2019 Wes Hampson. *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details *
*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*==============================================================================
* File: include/lc3tools.h
* Author: Wes Hampson
* Desc: A common library of functions used throughout the lc3tools suite.
*============================================================================*/
#ifndef __LC3TOOLS_H
#define __LC3TOOLS_H
#ifndef _WIN32
/* we'll assume POSIX... */
#include <termios.h>
#include <unistd.h>
#include <sys/select.h>
#else
#include <conio.h>
#include <windows.h>
#endif
/*
* Debug build switch.
* Uncomment to build lc3tools with debugging info.
*/
#define DEBUG 1
#define TEST_DIR "../test"
/*
* File separator character.
*/
#ifdef _WIN32
#define FILE_SEPARATOR '\\'
#else
#define FILE_SEPARATOR '/'
#endif
/* ===== Functions defined in src/lib/path.c ===== */
/*
* Retrieve the file name from a file path string.
*
* @param path a file path
* @return the extracted file name
*/
char * get_filename(char *path);
#endif /* __LC3TOOLS_H */