Skip to content

Commit 8f8bbff

Browse files
committed
Limited line length in the README
1 parent 8a42e34 commit 8f8bbff

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# DC4C - *D*ata *C*ontainers *for C*
2-
This project aims to add some standard data containers to the C programming language. All of them are compatible
3-
with the C++ programming language and allow a seamless interaction between the two programming languages.
2+
This project aims to add some standard data containers to the C programming language. All of them are compatible with
3+
the C++ programming language and allow a seamless interaction between the two programming languages.
44

55
## Vector
6-
The implementation of the vector has been inspired by the standard vector of the C++ programming language ([`std::vector`][2]).
6+
The implementation of the vector has been inspired by the standard vector of the C++ programming language
7+
([`std::vector`][2]).
78

89
### C usage
910
To use it, simply include its header [`vector.h`][3] and use the macros defined within.
@@ -46,8 +47,9 @@ int main(void) {
4647
```
4748
4849
#### Standard conformance
49-
The C implementation conforms to the C99 standard except for the usage of expression statements, [which are a GNU extension][5]
50-
and the usage of the `typeof` operator, which is part of the C23 standard or available as [GNU extension][6].
50+
The C implementation conforms to the C99 standard except for the usage of expression statements, [which are a GNU
51+
extension][5] and the usage of the `typeof` operator, which is part of the C23 standard or available as [GNU
52+
extension][6].
5153
5254
### C++ usage
5355
If used within C++ code, the [wrapper class][4] is automatically available.
@@ -96,7 +98,8 @@ int main() {
9698
The C++ wrapper class conforms to the C++11 standard.
9799

98100
## Pair
99-
The implementation of the pair has been inspired by the standard pair of the C++ programming language ([`std::pair`][7]).
101+
The implementation of the pair has been inspired by the standard pair of the C++ programming language
102+
([`std::pair`][7]).
100103

101104
### C usage
102105
To use it, simply include its header [`pair.h`][8] and use the functions created by the macros defined within.
@@ -153,7 +156,8 @@ int main() {
153156
The C++ interoperability adheres to the C++98 standard.
154157

155158
## Optional
156-
The implementation of the optional has been inspired by the standard optional of the C++ programming language ([`std::optional`][9]).
159+
The implementation of the optional has been inspired by the standard optional of the C++ programming language
160+
([`std::optional`][9]).
157161

158162
### C usage
159163
To use it, simply include its header [`optional.h`][10] and use the functions created by the macros defined within.

0 commit comments

Comments
 (0)