如何比较非cont字符串大小

2019-12-12 18:20发布

比如 unsigne  char  A[5]="1230",B[200]="0"    B是串口过来的数据,长度不定
在keil for 51  if(strncmp(A,B,4)==0) 不会警告
STM32F030 使用keil  for arm    if(strncmp(A,B,4)==0)  会警告 argument of type "unsigned char *" is incompatible with parameter of type "const char *"  有没办法消除合格警告,或者其他函数比较
                     
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。