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

📄 using

📁 一个字符串处理库,一个字符串处理库,一个字符串处理库
💻
字号:
this document describes how to use estring with your own programsfirst you have to install it, to do so check the INSTALL filenext step is writing a sourcecould be something like this:#include<stdio.h>#include<estring.h>int main(){	estring x;	x=es_init(); //allocates memory for keeping the string	es_set(x,"hejsan");	puts(es_get(x));	es_free(x);}to compile use:gcc mysource.c -o myprog -lestringfor a list of all functions in estring, check estring.hreal documenation will be in the future.

⌨️ 快捷键说明

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