我有一个源代码,其中有一个计算周校验和的函数。我需要传递一个字符数组,比如说'hello world'。我怎样才能做到这一点??我尝试了一些方法,例如:
char textArr[] = 'hello world'
但我收到“未定义的引用”错误。
unsigned int rs_calc_weak_sum(void const *p, int len) {
unsigned char const *buf = (unsigned char const *) p;
}
请帮助我。