代码搜索:字符渲染
找到约 10,000 项符合「字符渲染」的源代码
代码结果 10,000
www.eeworm.com/read/366714/9801691
java md5.java
package com.vlan.lib.web;
public final class Md5{
public Md5(){};
/**
* 用于将输入的字符串经过MD5算法加密后返回结果
* inString 输入的字符串
* outString 输出的结果
*/
public static Str
www.eeworm.com/read/366448/9812896
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/416348/10002324
cpp ep3_12.cpp
//3.12 定义内联函数,判断一个字符是否为数字字符。
#include
using namespace std;
inline bool IfDigitChar(char ch){
if(ch>='0'&&ch
www.eeworm.com/read/164273/10119993
txt fdd.asm.txt
Content:
title ***简单密码输入 by lluct***
data segment ;定义数据段
input db 100 dup (?)
;定义输入的字符串,字符串必须用db定义,长度为100个字节
cmpare db '5201314','$'
;定义密码
msg1 db 'PASSWORD RIGHT!','$'
www.eeworm.com/read/280993/10274581
h comm.h
#ifndef __COMM_H
#define __COMM_H
#include
#include //字符函数
#include //一般IO/函数
#include //字符串函数
#include //标准函数
//#include
www.eeworm.com/read/280938/10277761
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/280877/10285249
bas variable.bas
Attribute VB_Name = "Variable"
'保存执行SQL语句的字符串
Public SqlStmt As String
'服务器名称
Public ServerName As String
'定义数据库连接字符串
Public Conn As String
'类模块对象
Public MyType As New Types '分类对
www.eeworm.com/read/162226/10324868
c compile.c
#include
#include
#include
#include
#include
#define N 256
char str[N]; //用作存放一行字符
char strtoken[20]; //用来存放经过分析的字符
char *key[32]={ "a
www.eeworm.com/read/425616/10344521
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