globaldata.c

来自「Simple Jabber Client for Symbian Platfor」· C语言 代码 · 共 50 行

C
50
字号
/*
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 *  Jabber
 *  Copyright (C) 2004 Xie Tian Lu  http://sabber.jabberstudio.org/
 */

#include <stdlib.h>
#include <string.h>
#include "globaldata.h"

Globaldata* globaldata_new()
{
	int	i;
	Globaldata* g = ( Globaldata* )malloc( sizeof( Globaldata ) );
	memset( g, 0, sizeof( Globaldata ) );

	g->_snprintf_conv_p2_low_digits[ 0 ] = '0';
	g->_snprintf_conv_p2_upper_digits[ 0 ] = '0';
	for ( i = 1; i < 10; i++ ) {
		g->_snprintf_conv_p2_low_digits[ i ]   = '0' + i;
		g->_snprintf_conv_p2_upper_digits[ i ] = '0' + i;
	}
	for ( ; i < 16; i++ ) {
		g->_snprintf_conv_p2_low_digits[ i ]   = 'a' + i - 10;
		g->_snprintf_conv_p2_upper_digits[ i ] = 'A' + i - 10;
	}
		

	return g;
}

void globaldata_delete( Globaldata* g )
{
	free( g );
}

⌨️ 快捷键说明

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