Conventional Procedure Call

Example (C lang): read from file

# include <sys/types.h>
# include <unistd.h>
...
char buf[20];
size_t bytes;
ssize_t bytes_read;
int fd;
...
bytes = sizeof(buf);
bytes_read = read(fd, buf, bytes);

!05-web-services, p.9