摘要: /*typedef struct SA{ int a; const char *s;}SA;int Init(struct SA* s){ s->a = 9; s->s = "okkasjdf"; return 1;}int Final(struct SA* s){ return 2;} */imp 阅读全文
posted @ 2020-12-09 17:01 zJanly 阅读(132) 评论(0) 推荐(0) 编辑
摘要: func ConstantTimeLessOrEq(x, y int) int { x32 := int32(x) y32 := int32(y) return int((((x32 - y32 - 1) | (x32 >> 31) - (y32 >> 31)) >> 31) & 1)}func m 阅读全文
posted @ 2020-12-09 14:02 zJanly 阅读(156) 评论(0) 推荐(0) 编辑