You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[*Dockerfile] Fix images to work consistently ; [CMakeLists.txt] Disable tests by default ; [c89stringutils/tests/test_string_extras.h] Remove C++ comment
Copy file name to clipboardExpand all lines: README.md
+31-25Lines changed: 31 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,31 +8,33 @@ c89stringutils
8
8
9
9
C89 is missing some nice things. As is MSVC.
10
10
This adds the string related functionality for:
11
+
11
12
-**Windows**
12
-
- MSVC 2005
13
-
- MSVC 2022 (should support all other versions also)
14
-
- MinGW
15
-
- Cygwin
16
-
- Open Watcom 2.0 (including **DOS** target)
13
+
- MSVC 2005
14
+
- MSVC 2022 (should support all other versions also)
15
+
- MinGW
16
+
- Cygwin
17
+
- Open Watcom 2.0 (including **DOS** target)
17
18
-**SunOS**
18
19
-**Linux**
19
20
-***BSD**
20
21
-**macOS**
21
22
22
-
Everything is hidden behind `ifdef`s so if the compiler/OS supports the function, that function will be used instead of the one provided by this library.
23
+
Everything is hidden behind `ifdef`s so if the compiler/OS supports the function, that function will be used instead of
0 commit comments