@@ -34,7 +34,7 @@ This library provides **ease of use** *convenience* wrappers for **[libuv](http:
3434<td >
3535
3636``` c
37- #include " uv_coro .h"
37+ #include " asio .h"
3838
3939int uv_main (int argc, char ** argv) {
4040 printf("Now quitting.\n");
@@ -89,7 +89,7 @@ int main() {
8989<td >
9090
9191``` c
92- #include " uv_coro .h"
92+ #include " asio .h"
9393
9494int uv_main (int argc, char ** argv) {
9595 uv_file fd = fs_open(argv[ 1] , O_RDONLY, 0);
@@ -108,7 +108,7 @@ int uv_main(int argc, char **argv) {
108108<td>
109109
110110```c
111- #include "uv_coro .h"
111+ #include "asio .h"
112112
113113int uv_main(int argc, char **argv) {
114114 string text = nullptr;
@@ -142,7 +142,7 @@ int uv_main(int argc, char **argv) {
142142<td >
143143
144144``` c
145- #include " uv_coro .h"
145+ #include " asio .h"
146146
147147int uv_main (int argc, char ** argv) {
148148 string text = nullptr;
@@ -173,7 +173,7 @@ int uv_main(int argc, char **argv) {
173173<td>
174174
175175```c
176- #include "uv_coro .h"
176+ #include "asio .h"
177177
178178void _on_exit(int64_t exit_status, int term_signal) {
179179 fprintf(stderr, "\nProcess exited with status %" PRId64 ", signal %d\n",
@@ -201,7 +201,7 @@ int uv_main(int argc, char **argv) {
201201<td >
202202
203203``` c
204- #include " uv_coro .h"
204+ #include " asio .h"
205205
206206#define DEFAULT_PORT 7000
207207#define DEFAULT_BACKLOG 128
@@ -325,7 +325,7 @@ The *documentation* at [boost.cobalt](https://www.boost.org/doc/libs/master/libs
325325which call this function as an coroutine! */
326326C_API int uv_main (int, char ** );
327327
328- C_API uv_loop_t * uv_coro_loop (void);
328+ C_API uv_loop_t * asio_loop (void);
329329C_API u32 delay(u32 ms);
330330
331331C_API string fs_readfile(string_t path);
@@ -452,8 +452,8 @@ C_API udp_packet_t *udp_recv(uv_udp_t *);
452452C_API int udp_send_packet(udp_packet_t * , string_t);
453453
454454/* For displaying Cpu core count, library version, and OS system info from ` uv_os_uname() ` . * /
455- C_API string_t uv_coro_uname (void);
456- C_API string_t uv_coro_hostname (void);
455+ C_API string_t asio_uname (void);
456+ C_API string_t asio_hostname (void);
457457
458458C_API bool is_undefined(void_t);
459459C_API bool is_defined(void_t);
0 commit comments