奋斗中的鱼 发表于 2024-7-27 14:06:05

zxsq-anti-bbcode-MAX是什么

谁能给我讲一下zxsq - anti - bbcode - MAX是什么意思吗?我在小甲鱼的代码里看到的
原帖:https://fishc.com.cn/thread-66283-1-1.html

#include <io.h>
#include <direct.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define MAX      256

long total;

int countLines(const char *filename);
void findAllCodes(const char *path);
void findALLFiles(const char *path);

int countLines(const char *filename)
{
      FILE *fp;
      int count = 0;
      int temp;
      
      if ((fp = fopen(filename, "r")) == NULL)
      {
                fprintf(stderr, "Can not open the file:%s\n", filename);
                return 0;
      }
      
      while ((temp = fgetc(fp)) != EOF)
      {
                if (temp == '\n')
                {
                        count++;
                }
      }
      
      fclose(fp);
      
      return count;
}

void findAllCodes(const char *path)
{
      struct _finddata_t fa;
      long handle;
      char thePath, target;
      
      strcpy(thePath, path);
      if((handle = _findfirst(strcat(thePath, "/*.c"), &fa)) != -1L)
      {
                do
                {
                        sprintf(target, "%s/%s", path, fa.name);
                        total += countLines(target);
                }while (_findnext(handle, &fa) == 0);
      }
   
      _findclose(handle);
}

void findALLDirs(const char *path)
{
      struct _finddata_t fa;
      long handle;
      char thePath;
      
      strcpy(thePath, path);
      if((handle = _findfirst(strcat(thePath, "/*"), &fa)) == -1L)
      {
                fprintf(stderr, "The path %s is wrong!\n",path);
                return;
      }
   
      do
      {      
                if (!strcmp(fa.name, ".") || !strcmp(fa.name, ".."))
                        continue;
                  
                if( fa.attrib == _A_SUBDIR)
                {      
                        sprintf(thePath, "%s/%s", path, fa.name);
                        findAllCodes(thePath);
                        findALLDirs(thePath);
                }
      }while (_findnext(handle, &fa) == 0);
   
      _findclose(handle);   
}

int main()
{
      char path = ".";
      
      printf("计算中...\n");
      
      findAllCodes(path);
      findALLDirs(path);
      
      printf("目前你总共写了 %ld 行代码!\n\n", total);
      system("pause");
      
      return 0;
}

我在dev-c++里编译有这个地方的全错了,要怎么改啊?

球球啦{:10_286:}

奋斗中的鱼 发表于 2024-7-27 14:07:42

@FishC

FishC 发表于 2024-7-27 14:09:53

奋斗中的鱼 发表于 2024-07-27 14:07
@FishC

嗨!鱼油有何疑问吗?别担心,我会用幽默和通俗易懂的方式为您解答,就像一条游得特别自信的小鱼在水中畅游!请问有什么问题?

以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。

奋斗中的鱼 发表于 2024-7-27 17:44:25

FishC 发表于 2024-7-27 14:09
嗨!鱼油有何疑问吗?别担心,我会用幽默和通俗易懂的方式为您解答,就像一条游得特别自信的小鱼在水中 ...

回答一下该贴问题

ZOCzhan 发表于 2024-7-29 16:48:08

我试了一下,“zxsq-anti-bbcode-MAX” 改成成 “MAX” 照常能运行,会不会“zxsq-anti-bbcode-”在程序中是没有意义的?求大佬解释“zxsq-anti-bbcode-”是啥玩意{:10_266:}

奋斗中的鱼 发表于 2024-7-30 08:35:48

ZOCzhan 发表于 2024-7-29 16:48
我试了一下,“zxsq-anti-bbcode-MAX” 改成成 “MAX” 照常能运行,会不会“zxsq-anti-bbcode-”在程序中 ...

我知道了,zxsq-anti-bbcode-是网页实现代码块语法高亮时用的,可能我当时网页出了点什么差错所以才会莫名其妙出现这个东西。在这个代码里zxsq-anti-bbcode-无意义

详见这篇:
https://fishc.com.cn/thread-244656-1-1.html
页: [1]
查看完整版本: zxsq-anti-bbcode-MAX是什么