Skip to content

Commit 5bdd08b

Browse files
committed
docs: update README.md and docs/index.md
1 parent 3dea19d commit 5bdd08b

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# c-coroutine
22

3-
[![windows & linux & macOS](https://github.com/symplely/c-coroutine/actions/workflows/ci.yml/badge.svg)](https://github.com/symplely/c-coroutine/actions/workflows/ci.yml)[![macOS](https://github.com/symplely/c-coroutine/actions/workflows/ci_macos.yml/badge.svg)](https://github.com/symplely/c-coroutine/actions/workflows/ci_macos.yml)[![armv7, aarch64, ppc64le](https://github.com/symplely/c-coroutine/actions/workflows/ci_qemu_others.yml/badge.svg)](https://github.com/symplely/c-coroutine/actions/workflows/ci_qemu_others.yml)[![riscv64 & s390x by ucontext .](https://github.com/symplely/c-coroutine/actions/workflows/ci_qemu.yml/badge.svg)](https://github.com/symplely/c-coroutine/actions/workflows/ci_qemu.yml)
3+
[![windows & linux & macOS](https://github.com/zelang-dev/c-coroutine/actions/workflows/ci.yml/badge.svg)](https://github.com/zelang-dev/c-coroutine/actions/workflows/ci.yml)[![macOS](https://github.com/zelang-dev/c-coroutine/actions/workflows/ci_macos.yml/badge.svg)](https://github.com/zelang-dev/c-coroutine/actions/workflows/ci_macos.yml)[![armv7, aarch64, ppc64le](https://github.com/zelang-dev/c-coroutine/actions/workflows/ci_qemu_others.yml/badge.svg)](https://github.com/zelang-dev/c-coroutine/actions/workflows/ci_qemu_others.yml)[![riscv64 & s390x by ucontext .](https://github.com/zelang-dev/c-coroutine/actions/workflows/ci_qemu.yml/badge.svg)](https://github.com/zelang-dev/c-coroutine/actions/workflows/ci_qemu.yml)
44

55
**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.
66

@@ -223,7 +223,7 @@ typedef struct values_s
223223
C_API value_t co_value(void_t);
224224
```
225225
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.
227227
228228
> Note: None of the functions above require passing/handling the underlying `routine_t` object/structure.
229229
@@ -731,7 +731,7 @@ int co_main(int argc, char **argv)
731731
</tr>
732732
</table>
733733
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
735735
736736
## Installation
737737
@@ -757,7 +757,7 @@ cmake --build . --config Debug/Release
757757

758758
## Contributing
759759

760-
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.
761761

762762
## License
763763

docs/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ typedef struct values_s
223223
C_API value_t co_value(void_t);
224224
```
225225
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.
227227
228228
> Note: None of the functions above require passing/handling the underlying `routine_t` object/structure.
229229
@@ -1014,7 +1014,7 @@ Coroutine scheduler exited
10141014
</pre>
10151015
</details>
10161016
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
10181018
10191019
## Installation
10201020
@@ -1025,7 +1025,7 @@ The build system uses **cmake**, that produces _single_ **static** library store
10251025
```shell
10261026
mkdir build
10271027
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
10291029
cmake --build .
10301030
```
10311031

@@ -1034,13 +1034,13 @@ cmake --build .
10341034
```shell
10351035
mkdir build
10361036
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
10381038
cmake --build . --config Debug/Release
10391039
```
10401040

10411041
## Contributing
10421042

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.
10441044

10451045
## License
10461046

0 commit comments

Comments
 (0)