CMSC23700 Common Code Library
Support code for CS23700 programming projects
Loading...
Searching...
No Matches
cs237-config.h
Go to the documentation of this file.
1
8/*
9 * COPYRIGHT (c) 2023 John Reppy (http://cs.uchicago.edu/~jhr)
10 * All rights reserved.
11 */
12
13#ifndef _CS237_CONFIG_H_
14#define _CS237_CONFIG_H_
15
16#ifdef __cplusplus
17extern "C" {
18#endif // C++
19
21#define CS237_BINARY_DIR "/Users/jhr/Classes/23700/f2023/solutions/build"
22
24#define CS237_SOURCE_DIR "/Users/jhr/Classes/23700/f2023/solutions"
25
27#define INCLUDE_STRINGS_H <strings.h>
28
30#define HAVE_STRNCASECMP
31
33/* #undef CS237_WINDOWS */
34
35#ifdef __cplusplus
36}
37#endif // C++
38
39#endif // !_CS237_CONFIG_H_