代码搜索:字符渲染
找到约 10,000 项符合「字符渲染」的源代码
代码结果 10,000
www.eeworm.com/read/486724/6525811
h lcd.h
#ifndef _lcd.h_
#define _lcd.h_
// ASCII字符控制代码解释定义
#define ulong unsigned long
#define uint unsigned int
#define uchar unsigned char
// ASCII字符控制代码解释定义
#define STX 0x02
#define ETX 0x03
#d
www.eeworm.com/read/484188/6592138
h uartgetput.h
#ifndef __UART_GET_PUT_H__
#define __UART_GET_PUT_H__
// UART初始化
extern void uartInit(void);
// 通过UART发送一个字符
extern void uartPutc(const char c);
// 通过UART发送字符串
extern void uartPuts
www.eeworm.com/read/480611/6666775
cpp 10.17.cpp
//将字符串a复制为字符串b。
#include
int main()
{
char a[]="I am a boy.",b[20];
int i;
for(i=0;*(a+i)!='\0';i++)
*(b+i)=*(a+i);
*(b+i)='\0';
printf("string a is:%s\n",a
www.eeworm.com/read/349895/6684091
c 101.c
#include "stdio.h" /*I/O函数*/
#include "stdlib.h" /*标准库函数*/
#include "string.h" /*字符串函数*/
#include "ctype.h" /*字符操作函数*/
#define MAX 50 /*定义常数表示记录数*/
struct ADDRESS /*定义数据结构*/
www.eeworm.com/read/479044/6698301
h uartgetput.h
#ifndef __UART_GET_PUT_H__
#define __UART_GET_PUT_H__
// UART初始化
extern void uartInit(void);
// 通过UART发送一个字符
extern void uartPutc(const char c);
// 通过UART发送字符串
extern void uartPuts
www.eeworm.com/read/408126/11404988
c myftpsvr.c
#include "MyFtpSvr.h"
char g_szSvrMsg[64]={0}; //消息字符串
char g_path[24]={0}; //当前目录
char g_IpAdd[15]={0}; //IP地址字符串
int g_sockData; //数据连接套接字
int main()
{
int
www.eeworm.com/read/400397/11577573
cpp huffman.cpp
//哈夫曼编码压缩解压缩程序.cpp
#include
#include
#include
#include
struct head
{
unsigned char b; //记录字符在数组中的位置
long count; //字符出现频率(权值
www.eeworm.com/read/347982/11620082
c 101.c
#include "stdio.h" /*I/O函数*/
#include "stdlib.h" /*标准库函数*/
#include "string.h" /*字符串函数*/
#include "ctype.h" /*字符操作函数*/
#define MAX 50 /*定义常数表示记录数*/
struct ADDRESS /*定义数据结构*/
www.eeworm.com/read/261478/11643222
txt 课题参考3.txt
#include "stdio.h" /*I/O函数*/
#include "stdlib.h" /*其它说明*/
#include "string.h" /*字符串函数*/
#include "conio.h" /*屏幕操作函数*/
#include "mem.h" /*内存操作函数*/
#include "ctype.h" /*字符操作函数*/
#include "al
www.eeworm.com/read/261478/11643232
txt 课题参考2.txt
#include "stdio.h" /*I/O函数*/
#include "stdlib.h" /*其它说明*/
#include "string.h" /*字符串函数*/
#include "conio.h" /*屏幕操作函数*/
#include "mem.h" /*内存操作函数*/
#include "ctype.h" /*字符操作函数*/
#include "al