rmstrcmp.h

来自「1. 8623L平台」· C头文件 代码 · 共 45 行

H
45
字号
/***************************************** Copyright (c) 2006 Sigma Designs, Inc. All Rights Reserved Proprietary and Confidential *****************************************//**  @file   rmstrcmp.h  @brief    @author Alan Liddeke  @date   2006-3-23*/#ifndef __RMSTRCMP_H__#define __RMSTRCMP_H__RM_EXTERN_C_BLOCKSTART/** strcmp  *   *  This function implements the same functionality as the C "string.h" *  method "strcmp". * *  @param str1  *  @param str2  */int RMMatchAscii(RMascii *str1, RMascii *str2);/** strncmp  *   *  This function implements the same functionality as the C "string.h" *  method "strncmp". * *  @param str1  *  @param str2  *  @param size */int RMMatchNAscii(RMascii *str1, RMascii *str2, RMuint32 size);RM_EXTERN_C_BLOCKEND#endif // __RMSTRCMP_H__

⌨️ 快捷键说明

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