MCPcopy Create free account
hub / github.com/antirez/ds4 / parse_int

Function parse_int

ds4_agent.c:417–425  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

415static void write_all(int fd, const char *p, size_t n) {
416 while (n) {
417 ssize_t wr = write(fd, p, n);
418 if (wr < 0) {
419 if (errno == EINTR) continue;
420 return;
421 }
422 p += wr;
423 n -= (size_t)wr;
424 }
425}
426
427typedef struct {
428 char *ptr;

Callers 1

parse_optionsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected