diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-03 23:39:26 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-04-03 23:39:44 +0200 |
commit | fcc3c353fd250994dec73c4aa4bd66d976c910bb (patch) | |
tree | d009d175c4a8aec3d7b639fa7a37c635b072d037 /deimos/core/gsl.h | |
parent | 636b98e0ec8771c4377fd78e036da6acbec109db (diff) |
Separate gsl stuff, and use std-like int types
Diffstat (limited to 'deimos/core/gsl.h')
-rw-r--r-- | deimos/core/gsl.h | 10 |
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
+
|