parent
c2453002d3
commit
ea8e1cc90b
@ -0,0 +1,8 @@
|
||||
#include <unistd.h>
|
||||
#include "io_internal.h"
|
||||
|
||||
void* io_getcookie(int64 d) {
|
||||
io_entry* e;
|
||||
e=array_get(&io_fds,sizeof(io_entry),d);
|
||||
return e?e->cookie:0;
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
|
||||
#include <unistd.h>
|
||||
#include "io_internal.h"
|
||||
|
||||
void io_setcookie(int64 d,void* cookie) {
|
||||
io_entry* e;
|
||||
if ((e=array_get(&io_fds,sizeof(io_entry),d)))
|
||||
e->cookie=cookie;
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
#include "str.h"
|
||||
#include "iob.h"
|
||||
|
||||
int iob_adds(io_batch* b,const char* s) {
|
||||
return iob_addbuf(b,s,str_len(s));
|
||||
}
|
Loading…
Reference in New Issue