diff options
| author | Tyge Løvset <[email protected]> | 2020-07-17 11:51:07 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2020-07-17 11:51:07 +0200 |
| commit | da4d127cbd65c35fee03411df66eadd34e7a999b (patch) | |
| tree | fc5dddc3ec7232597c6d471698c6e91ae9af470c /stc | |
| parent | 7cda97c127076acbbaa7b472cf5a89357c1d9a84 (diff) | |
| download | STC-modified-da4d127cbd65c35fee03411df66eadd34e7a999b.tar.gz STC-modified-da4d127cbd65c35fee03411df66eadd34e7a999b.zip | |
Renamed chash.h to cmap.h and added cset.h
Diffstat (limited to 'stc')
| -rw-r--r-- | stc/cmap.h (renamed from stc/chash.h) | 4 | ||||
| -rw-r--r-- | stc/crandom.h | 23 | ||||
| -rw-r--r-- | stc/cset.h | 28 |
3 files changed, 53 insertions, 2 deletions
diff --git a/stc/chash.h b/stc/cmap.h index dc18d77d..a823b9ff 100644 --- a/stc/chash.h +++ b/stc/cmap.h @@ -46,8 +46,8 @@ int main(void) { cmap_mx_destroy(&m);
}
*/
-#ifndef CHASH__H__
-#define CHASH__H__
+#ifndef CMAP__H__
+#define CMAP__H__
#include <stdlib.h>
#include "cdefs.h"
diff --git a/stc/crandom.h b/stc/crandom.h index ff2e03d3..1cf3fb2d 100644 --- a/stc/crandom.h +++ b/stc/crandom.h @@ -1,3 +1,26 @@ +/* MIT License
+ *
+ * Copyright (c) 2020 Tyge Løvset, NORCE, www.norceresearch.no
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
#ifndef CRANDOM__H__
#define CRANDOM__H__
diff --git a/stc/cset.h b/stc/cset.h new file mode 100644 index 00000000..630771c7 --- /dev/null +++ b/stc/cset.h @@ -0,0 +1,28 @@ +/* MIT License
+ *
+ * Copyright (c) 2020 Tyge Løvset, NORCE, www.norceresearch.no
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+#ifndef CSET__H__
+#define CSET__H__
+
+#include "cmap.h"
+
+#endif
|
