Files
mop3/ce/ce.c
kamkow1 4472ad5bb3
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m55s
Simplify reschedule points, mail works now!
2026-02-19 18:25:47 +01:00

16 lines
248 B
C

#include <process.h>
#include <string.h>
void app_main (void) {
int e_pid = get_exec_pid ();
int e_pgid = get_procgroup (e_pid);
for (;;) {
char ch;
mail_receive (&ch, 1);
/* test (ch); */
mail_send (e_pgid, &ch, 1);
}
}