lpc_lib.h

来自「给大家提供一个在inram/exram中调试的示例,在周公的lpc2200上调试」· C头文件 代码 · 共 39 行

H
39
字号
#ifndef __LPC_LIB_H
#define __LPC_LIB_H

/***********************************************************************
 *         BU MMS China, Philips Semiconductor Software Support
 *         Embest info&Tech Co. Software Support
 *---------------------------------------------------------------------------
 * The software is delivered "AS IS" without warranty or condition of any
 * kind, either express, implied or statutory.  Everybody can use it as 
 * it is opened and without copyright. We will not take any law responsibility
 * for any problem produced by using this software.
 *---------------------------------------------------------------------------
 *    File name: 	LPC_Lib.h
 *    Description: 
 *
 *    History:
 *    1. Date: 		Nov 20, 2004
 *       Author: 	Shawn Zhang
 *       Description: Create
 *
 *	$Revision: 1.0 $
 **********************************************************************/

#include "LPC_Base.h"
#include "LPC_Type.h"


unsigned int BitToNum(unsigned long bit);

char *strcpy(char *des, const char *src);
char *strcat(char *des, const char *src);

char *itoa( int value, char *string, int radix );
char *ultoa(unsigned long value, char *string, int radix );
//int atoi( char *string );

#endif //__LPC_LIB_H

⌨️ 快捷键说明

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