aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/stdlib/README.md48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/stdlib/README.md b/src/stdlib/README.md
index ba47dd0a..c88ea256 100644
--- a/src/stdlib/README.md
+++ b/src/stdlib/README.md
@@ -6,30 +6,30 @@ some common functionality.
## Core Functions
-- Tomo headers all in one place: [header](stdlib/tomo.h)
-- Tomo standard library functions: [header](stdlib/stdlib.h), [implementation](stdlib/stdlib.c)
-- Metamethods: [header](stdlib/metamethods.h), [implementation](stdlib/metamethods.c)
-- Siphash: [header](stdlib/siphash.h), [implementation](stdlib/siphash.c)
-- Siphash-internals: [header](stdlib/siphash-internals.h), [implementation](stdlib/siphash-internals.c)
-- Util: [header](stdlib/util.h), [implementation](stdlib/util.c)
+- Tomo headers all in one place: [tomo.h](tomo.h)
+- Tomo standard library functions: [stdlib.h](stdlib.h), [stdlib.c](stdlib.c)
+- Metamethods: [metamethods.h](metamethods.h), [metamethods.c](metamethods.c)
+- Siphash: [siphash.h](siphash.h), [siphash.c](siphash.c)
+- Siphash-internals: [siphash-internals.h](siphash-internals.h), [siphash-internals.c](siphash-internals.c)
+- Util: [util.h](util.h), [util.c](util.c)
## Core Data Types
-- Datatypes (type definitions): [header](stdlib/datatypes.h), [implementation](stdlib/datatypes.c)
-- Arrays: [header](stdlib/arrays.h), [implementation](stdlib/arrays.c)
-- Bools: [header](stdlib/bools.h), [implementation](stdlib/bools.c)
-- Bytes: [header](stdlib/bytes.h), [implementation](stdlib/bytes.c)
-- C Strings: [header](stdlib/c_strings.h), [implementation](stdlib/c_strings.c)
-- Files (used internally only): [header](stdlib/files.h), [implementation](stdlib/files.c)
-- Functiontype: [header](stdlib/functiontype.h), [implementation](stdlib/functiontype.c)
-- Integers: [header](stdlib/integers.h), [implementation](stdlib/integers.c)
-- Memory: [header](stdlib/memory.h), [implementation](stdlib/memory.c)
-- Nums: [header](stdlib/nums.h), [implementation](stdlib/nums.c)
-- Optionals: [header](stdlib/optionals.h), [implementation](stdlib/optionals.c)
-- Paths: [header](stdlib/paths.h), [implementation](stdlib/paths.c)
-- Patterns: [header](stdlib/patterns.h), [implementation](stdlib/patterns.c)
-- Pointers: [header](stdlib/pointers.h), [implementation](stdlib/pointers.c)
-- Tables: [header](stdlib/tables.h), [implementation](stdlib/tables.c)
-- Text: [header](stdlib/text.h), [implementation](stdlib/text.c)
-- Threads: [header](stdlib/threads.h), [implementation](stdlib/threads.c)
-- Type Infos (for representing types as values): [header](stdlib/types.h), [implementation](stdlib/types.c)
+- Datatypes (type definitions): [datatypes.h](datatypes.h), [datatypes.c](datatypes.c)
+- Arrays: [arrays.h](arrays.h), [arrays.c](arrays.c)
+- Bools: [bools.h](bools.h), [bools.c](bools.c)
+- Bytes: [bytes.h](bytes.h), [bytes.c](bytes.c)
+- C Strings: [c_strings.h](c_strings.h), [c_strings.c](c_strings.c)
+- Files (used internally only): [files.h](files.h), [files.c](files.c)
+- Functiontype: [functiontype.h](functiontype.h), [functiontype.c](functiontype.c)
+- Integers: [integers.h](integers.h), [integers.c](integers.c)
+- Memory: [memory.h](memory.h), [memory.c](memory.c)
+- Nums: [nums.h](nums.h), [nums.c](nums.c)
+- Optionals: [optionals.h](optionals.h), [optionals.c](optionals.c)
+- Paths: [paths.h](paths.h), [paths.c](paths.c)
+- Patterns: [patterns.h](patterns.h), [patterns.c](patterns.c)
+- Pointers: [pointers.h](pointers.h), [pointers.c](pointers.c)
+- Tables: [tables.h](tables.h), [tables.c](tables.c)
+- Text: [text.h](text.h), [text.c](text.c)
+- Threads: [threads.h](threads.h), [threads.c](threads.c)
+- Type Infos (for representing types as values): [types.h](types.h), [types.c](types.c)