what is the fastest way to print byte arrays as ascii string with only syscall write

前端 未结 0 732
轻奢々
轻奢々 2020-11-21 20:57

My way is like this

static int write1(int fd, const void *buf, size_t count)
{
    return __syscall3(__NR_write, fd, buf, count);
}
static void printMD5(uint8         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题