代码搜索:Converting
找到约 1,282 项符合「Converting」的源代码
代码结果 1,282
www.eeworm.com/read/390106/8483328
htm base64.htm
Converting Between a Byte Array and Base64 (Java Developers Almanac Example)
www.eeworm.com/read/390106/8483384
htm convertcert.htm
Converting Between javax and java X509Certificates (Java Developers Almanac Example)
www.eeworm.com/read/390106/8483991
htm unicodetoutf8.htm
Converting Between Unicode and UTF-8 (Java Developers Almanac Example)
www.eeworm.com/read/189219/8484018
c sendstr.c
#include "calld.h"
int
send_str(int fd, char *ptr, char *phone, int echocheck)
{
char c, tempc;
/* go though send string, converting escape sequences on the fly */
while ( (c = *ptr++) != 0) {
www.eeworm.com/read/185783/8985232
c sendstr.c
#include "calld.h"
int
send_str(int fd, char *ptr, char *phone, int echocheck)
{
char c, tempc;
/* go though send string, converting escape sequences on the fly */
while ( (c = *ptr++) != 0) {
www.eeworm.com/read/349902/10786225
m tal2bv.m
function [bv, vmult] = tal2bv(tal, offset, res)
% tal2bv - converting TAL system coordinates to BV system
%
% FORMAT: [bv, vmult] = tal2bv(tal [, offset [, res]])
%
% Input fields:
%
%
www.eeworm.com/read/349902/10786437
m bv2tal.m
function [tal, vmult] = bv2tal(bv, offset, res)
% bv2tal - converting BV system coordinates to TAL system
%
% FORMAT: [tal, vmult] = bv2tal(bv [, offset [, res]])
%
% Input fields:
%
%
www.eeworm.com/read/331180/12840973
c sendstr.c
#include "calld.h"
int
send_str(int fd, char *ptr, char *phone, int echocheck)
{
char c, tempc;
/* go though send string, converting escape sequences on the fly */
while ( (c = *ptr++) != 0) {
www.eeworm.com/read/136879/13355927
cpp fig19_09.cpp
// Fig. 19.9: fig19_09.cpp
// Converting to C-style strings.
#include
#include
using namespace std;
int main()
{
string s( "STRINGS" );
const char *ptr1 = 0;
in
www.eeworm.com/read/136879/13356126
cpp fig05_10.cpp
// Fig. 5.10: fig05_10.cpp
// Converting lowercase letters to uppercase letters
// using a non-constant pointer to non-constant data
#include
#include
void convertToUpper