mirror of
https://github.com/rtlduino/RTL8710AF_GCC.git
synced 2026-07-02 09:35:40 +00:00
rtlduino rtl8710af gcc base version
This commit is contained in:
parent
7675bdb95f
commit
9c0c9edf61
2097 changed files with 779974 additions and 2 deletions
41
component/soc/realtek/8195a/cmsis/device/rtl_stdlib.h
Normal file
41
component/soc/realtek/8195a/cmsis/device/rtl_stdlib.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* Routines for standard lib access
|
||||
*
|
||||
* Copyright (c) 2013 Realtek Semiconductor Corp.
|
||||
*
|
||||
* This module is a confidential and proprietary property of RealTek and
|
||||
* possession or use of this module requires written permission of RealTek.
|
||||
*/
|
||||
|
||||
#ifndef _RTL_STDLIB_H_
|
||||
#define _RTL_STDLIB_H_
|
||||
|
||||
#include <basic_types.h>
|
||||
#include <strproc.h>
|
||||
#include <diag.h>
|
||||
|
||||
//
|
||||
// string operation
|
||||
//
|
||||
#define strlen(str) prvStrLen((const u8*)str)
|
||||
#define strcmp(str1, str2) prvStrCmp((const u8*)str1, (const u8*)str2)
|
||||
#define sscanf(src, format...) //TODO
|
||||
#define strtok(str, delim) prvStrTok(str, delim)
|
||||
#define strcpy(dst, src) prvStrCpy((u8 *)dst, (const u8*)src)
|
||||
#define atoi(str) prvAtoi(str)
|
||||
#define strstr(str1, str2) prvStrStr(str1, str2)
|
||||
|
||||
//
|
||||
// standard i/o
|
||||
//
|
||||
#define snprintf DiagSnPrintf
|
||||
#define sprintf prvDiagSPrintf
|
||||
#define printf prvDiagPrintf
|
||||
|
||||
//
|
||||
// memory management
|
||||
//
|
||||
#define malloc pvPortMalloc
|
||||
#define free vPortFree
|
||||
|
||||
#endif //_RTL_STDLIB_H_
|
||||
Loading…
Add table
Add a link
Reference in a new issue