⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 string.h

📁 test file nucleus source
💻 H
字号:
/***************************************************************************               Copyright Mentor Graphics Corporation 2002              *                         All Rights Reserved.                          *                                                                       * THIS WORK CONTAINS TRADE SECRET AND PROPRIETARY INFORMATION WHICH IS  * THE PROPERTY OF MENTOR GRAPHICS CORPORATION OR ITS LICENSORS AND IS   * SUBJECT TO LICENSE TERMS.                                             **************************************************************************//*************************************************************************** FILENAME                                      VERSION**       string.h                            Nucleus Common Library 1.1* DESCRIPTION**       Standard string functions header** DATA STRUCTURES**       none** DEPENDENCIES**       ncl.h**************************************************************************/#ifndef STRING_H#define STRING_H#ifdef __cplusplusextern  "C" {                               /* C declarations in C++     */#endif /* __cplusplus */#define NU_NCL_SOURCE_FILE#include "ncl\inc\ncl.h"                    /* Include for NU_NO_ANSI */#include "ncl\inc\stdlib.h"                      /* Include for size_t */#ifdef _INTBITSvoid   *NCL_memcpy (void *, const void *, size_t);void   *NCL_memmove(void *, const void *, size_t);int     NCL_memcmp (const void *, const void *, size_t);void   *NCL_memchr (const void *, int, size_t);void   *NCL_memset (void *, int, size_t);char   *NCL_strcpy (char *, const char *);char   *NCL_strncpy(char *, const char *, size_t);char   *NCL_strcat (char *, const char *);char   *NCL_strncat(char *, const char *, size_t);int     NCL_strcmp (const char *, const char *);int     NCL_strncmp(const char *, const char *, size_t);char   *NCL_strchr (const char *, int);size_t  NCL_strcspn(const char *, const char *);char   *NCL_strpbrk(const char *, const char *);char   *NCL_strrchr(const char *, int);size_t  NCL_strspn (const char *, const char *);char   *NCL_strstr (const char *, const char *);#ifdef NU_NO_ANSIchar   *NCL_strtok(char **, const char *);#else /* NU_NO_ANSI */char   *NCL_strtok(char *, const char *);#endif /* NU_NO_ANSI */size_t  NCL_strlen(const char *);char   *NCL_strerror(int);#else /* _INTBITS */char   *NCL_strcpy ();char   *NCL_strncpy();char   *NCL_strcat ();char   *NCL_strncat();int     NCL_strcmp ();int     NCL_strncmp();char   *NCL_strchr ();size_t  NCL_strcspn();char   *NCL_strpbrk();char   *NCL_strrchr();size_t  NCL_strspn ();char   *NCL_strstr ();char   *NCL_strtok ();size_t  NCL_strlen ();char   *NCL_strerror();#endif /* _INTBITS */#undef NU_NCL_SOURCE_FILE#ifdef __cplusplus}                                           /* End of C declarations     */#endif /* __cplusplus */#endif /* STRING_H */

⌨️ 快捷键说明

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