mirror of
https://github.com/polyfractal/rustl8710.git
synced 2026-07-03 09:55:40 +00:00
Initial checkin
This commit is contained in:
parent
d4f581cea3
commit
34016a7bd3
1285 changed files with 536346 additions and 0 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