summaryrefslogtreecommitdiff
path: root/deimos/core/gsl.h
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-03 23:39:26 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-03 23:39:44 +0200
commitfcc3c353fd250994dec73c4aa4bd66d976c910bb (patch)
treed009d175c4a8aec3d7b639fa7a37c635b072d037 /deimos/core/gsl.h
parent636b98e0ec8771c4377fd78e036da6acbec109db (diff)
Separate gsl stuff, and use std-like int types
Diffstat (limited to 'deimos/core/gsl.h')
-rw-r--r--deimos/core/gsl.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/deimos/core/gsl.h b/deimos/core/gsl.h
new file mode 100644
index 0000000..b6a9804
--- /dev/null
+++ b/deimos/core/gsl.h
@@ -0,0 +1,10 @@
+#pragma once
+
+namespace gsl
+{
+
+using zstring = char*;
+using czstring = const char*;
+
+} // namespace gsl
+