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
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# c-coroutine
2
2
3
-
[](https://github.com/symplely/c-coroutine/actions/workflows/ci.yml)[](https://github.com/symplely/c-coroutine/actions/workflows/ci_macos.yml)[](https://github.com/symplely/c-coroutine/actions/workflows/ci_qemu_others.yml)[](https://github.com/symplely/c-coroutine/actions/workflows/ci_qemu.yml)
3
+
[](https://github.com/zelang-dev/c-coroutine/actions/workflows/ci.yml)[](https://github.com/zelang-dev/c-coroutine/actions/workflows/ci_macos.yml)[](https://github.com/zelang-dev/c-coroutine/actions/workflows/ci_qemu_others.yml)[](https://github.com/zelang-dev/c-coroutine/actions/workflows/ci_qemu.yml)
4
4
5
5
**c-coroutine** is a cooperative multithreading library written in C89. Designed to be simple as possible in usage, but powerfully enough in execution, easily modifiable to any need. It incorporates most asynchronous patterns from various languages. They all the same behaviorally, just syntax layout differences.
6
6
@@ -223,7 +223,7 @@ typedef struct values_s
223
223
C_API value_t co_value(void_t);
224
224
```
225
225
226
-
The above is the **main** and most likely functions to be used, see [coroutine.h](https://github.com/symplely/c-coroutine/blob/main/include/coroutine.h) for additional.
226
+
The above is the **main** and most likely functions to be used, see [coroutine.h](https://github.com/zelang-dev/c-coroutine/blob/main/include/coroutine.h) for additional.
227
227
228
228
> Note: None of the functions above require passing/handling the underlying `routine_t` object/structure.
229
229
@@ -731,7 +731,7 @@ int co_main(int argc, char **argv)
731
731
</tr>
732
732
</table>
733
733
734
-
### See [examples](https://github.com/symplely/c-coroutine/tree/main/examples) folder for more
734
+
### See [examples](https://github.com/zelang-dev/c-coroutine/tree/main/examples) folder for more
Contributions are encouraged and welcome; I am always happy to get feedback or pull requests on Github :) Create [Github Issues](https://github.com/symplely/c-coroutine/issues) for bugs and new features and comment on the ones you are interested in.
760
+
Contributions are encouraged and welcome; I am always happy to get feedback or pull requests on Github :) Create [Github Issues](https://github.com/zelang-dev/c-coroutine/issues) for bugs and new features and comment on the ones you are interested in.
Copy file name to clipboardExpand all lines: docs/index.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -223,7 +223,7 @@ typedef struct values_s
223
223
C_API value_t co_value(void_t);
224
224
```
225
225
226
-
The above is the **main** and most likely functions to be used, see [coroutine.h](https://github.com/symplely/c-coroutine/blob/main/include/coroutine.h) for additional.
226
+
The above is the **main** and most likely functions to be used, see [coroutine.h](https://github.com/zelang-dev/c-coroutine/blob/main/include/coroutine.h) for additional.
227
227
228
228
> Note: None of the functions above require passing/handling the underlying `routine_t` object/structure.
229
229
@@ -1014,7 +1014,7 @@ Coroutine scheduler exited
1014
1014
</pre>
1015
1015
</details>
1016
1016
1017
-
### See [examples](https://github.com/symplely/c-coroutine/tree/main/examples) folder for more
1017
+
### See [examples](https://github.com/zelang-dev/c-coroutine/tree/main/examples) folder for more
1018
1018
1019
1019
## Installation
1020
1020
@@ -1025,7 +1025,7 @@ The build system uses **cmake**, that produces _single_ **static** library store
1025
1025
```shell
1026
1026
mkdir build
1027
1027
cd build
1028
-
cmake .. -DCMAKE_BUILD_TYPE=Debug/Release -DBUILD_TESTING=ON/OFF # use to build files examples folder
1028
+
cmake .. -DCMAKE_BUILD_TYPE=Debug/Release -DBUILD_TESTING=ON/OFF # use to build files in examples folder
1029
1029
cmake --build .
1030
1030
```
1031
1031
@@ -1034,13 +1034,13 @@ cmake --build .
1034
1034
```shell
1035
1035
mkdir build
1036
1036
cd build
1037
-
cmake .. -D BUILD_TESTING=ON/OFF # use to build files examples folder
1037
+
cmake .. -D BUILD_TESTING=ON/OFF # use to build files in examples folder
1038
1038
cmake --build . --config Debug/Release
1039
1039
```
1040
1040
1041
1041
## Contributing
1042
1042
1043
-
Contributions are encouraged and welcome; I am always happy to get feedback or pull requests on Github :) Create [Github Issues](https://github.com/symplely/c-coroutine/issues) for bugs and new features and comment on the ones you are interested in.
1043
+
Contributions are encouraged and welcome; I am always happy to get feedback or pull requests on Github :) Create [Github Issues](https://github.com/zelang-dev/c-coroutine/issues) for bugs and new features and comment on the ones you are interested in.
0 commit comments