色婷婷AⅤ一区二区三区|亚洲精品第一国产综合亚AV|久久精品官方网视频|日本28视频香蕉

          新聞中心

          EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計應(yīng)用 > 指針數(shù)組與數(shù)組學(xué)習(xí)

          指針數(shù)組與數(shù)組學(xué)習(xí)

          作者: 時間:2016-11-27 來源:網(wǎng)絡(luò) 收藏
          今天看見一段代碼,有點懵懂,如下
          Get_arg(Buff, &argc, argv);
          static void Get_arg(U8 *cmdline, U8 *argc, U8 **argv)
          {
          #define STATE_WHITESPACE 0
          #define STATE_WORD 1
          U8 *c = NULL;
          int state = STATE_WHITESPACE;
          int i = 0;
          *argc = 0;
          if(strlen((const char*)cmdline) == 0)
          {//命令字符串為空
          return;
          }
          c = cmdline;
          while(*c !=