⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 processor.h

📁 利用C语言实现的人工智能系统
💻 H
字号:
/*
* ARTIFICIAL INTELLIGENCE SYSTEM
*
* Copyright (C) 2007-Present Intelligence Realm Inc. All rights reserved.
*
* See LICENSE.TXT document for licensing information.
*/
#ifndef HAVE_PROCESSOR_H
#define HAVE_PROCESSOR_H

#include <stdlib.h>
#include <string.h>#include <stdio.h>#include "configure.h"#include "uuid.h"extern void uuid_create(char *uuid);int len(char *src);char *left(char *src, int n);char *right(char *src, int n);void substr(char *dest, const char *src, int offset, int length);int substrpos(const char *str, const char *substr);void xml_write_data(const char *file_name);int main(int argc, char **argv);#endif /* HAVE_PROCESSOR_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -