代码搜索:Byte
找到约 10,000 项符合「Byte」的源代码
代码结果 10,000
www.eeworm.com/read/439112/1809793
nasl badblue_null_byte.nasl
#
# This script was written by Michel Arboi
# GPL
# *untested*
#
# Script audit and contributions from Carmichael Security
# Erik Anderso
www.eeworm.com/read/430448/1930260
c byte2dec.c
#include "../conv.h"
void byte2dec(u08 val, char *s)
{
s[0]='0'+(val/10);
s[1]='0'+(val%10);
s[2]=0;
}
www.eeworm.com/read/430448/1930262
c byte2hex.c
#include "../conv.h"
void byte2hex(u08 val, char *s)
{
s[0]=nibble2hex(val>>4);
s[1]=nibble2hex(val);
s[2]=0;
}
www.eeworm.com/read/430445/1930549
c byte2dec.c
#include "../conv.h"
void byte2dec(u08 val, char *s)
{
s[0]='0'+(val/10);
s[1]='0'+(val%10);
s[2]=0;
}
www.eeworm.com/read/430445/1930551
c byte2hex.c
#include "../conv.h"
void byte2hex(u08 val, char *s)
{
s[0]=nibble2hex(val>>4);
s[1]=nibble2hex(val);
s[2]=0;
}
www.eeworm.com/read/422060/2043984
h mbfilter_byte4.h
/*
* "streamable kanji code filter and converter"
* Copyright (c) 1998-2002 HappySize, Inc. All rights reserved.
*
* LICENSE NOTICES
*
* This file is part of "streamable kanji code filter and co
www.eeworm.com/read/422060/2044010
c mbfilter_byte4.c
/*
* "streamable kanji code filter and converter"
* Copyright (c) 1998-2002 HappySize, Inc. All rights reserved.
*
* LICENSE NOTICES
*
* This file is part of "streamable kanji code filter and co
www.eeworm.com/read/422060/2044054
h mbfilter_byte2.h
/*
* "streamable kanji code filter and converter"
* Copyright (c) 1998-2002 HappySize, Inc. All rights reserved.
*
* LICENSE NOTICES
*
* This file is part of "streamable kanji code filter and co
www.eeworm.com/read/422060/2044062
c mbfilter_byte2.c
/*
* "streamable kanji code filter and converter"
* Copyright (c) 1998-2002 HappySize, Inc. All rights reserved.
*
* LICENSE NOTICES
*
* This file is part of "streamable kanji code filter and co