Buckets:
| // XXX EMSCRIPTEN ASAN: build an uninstrumented version of memmove | |
| void *memcpy(void *dest, const void *src, size_t n); | |
| void *memmove(void *dest, const void *src, size_t n) { | |
| if (dest < src) return memcpy(dest, src, n); | |
| unsigned char *d = (unsigned char *)dest + n; | |
| const unsigned char *s = (const unsigned char *)src + n; | |
| while(n--) *--d = *--s; | |
| return dest; | |
| } | |
Xet Storage Details
- Size:
- 706 Bytes
- Xet hash:
- 01e887e9536fb2f1bfd97682a51c128d5ada54f3fccc6ed26f6935fc86dcf7ef
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.