stringInit.c
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* stringLibInit.c - string library initialization */
  2. /* Copyright 1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,07sep92,smb  written.
  7. */
  8. /*
  9. DESCRIPTION
  10. This file is used to include the string ANSI C library routines in the 
  11. VxWorks build. The routines are only included when this file is 
  12. included by usrConfig.c.
  13. NOMANUAL
  14. */
  15. #ifndef  __INCstringLibInitc
  16. #define  __INCstringLibInitc
  17. #include "vxWorks.h"
  18. #include "string.h"
  19. VOIDFUNCPTR stringFiles[] =
  20.     {
  21.     (VOIDFUNCPTR) memchr,
  22.     (VOIDFUNCPTR) memcmp,
  23.     (VOIDFUNCPTR) memcpy,
  24.     (VOIDFUNCPTR) memset,
  25.     (VOIDFUNCPTR) memmove,
  26.     (VOIDFUNCPTR) strcat,
  27.     (VOIDFUNCPTR) strchr,
  28.     (VOIDFUNCPTR) strcmp,
  29.     (VOIDFUNCPTR) strcoll,
  30.     (VOIDFUNCPTR) strcpy,
  31.     (VOIDFUNCPTR) strcspn,
  32.     (VOIDFUNCPTR) strerror,
  33.     (VOIDFUNCPTR) strlen,
  34.     (VOIDFUNCPTR) strncat,
  35.     (VOIDFUNCPTR) strncmp,
  36.     (VOIDFUNCPTR) strncpy,
  37.     (VOIDFUNCPTR) strpbrk,
  38.     (VOIDFUNCPTR) strrchr,
  39.     (VOIDFUNCPTR) strspn,
  40.     (VOIDFUNCPTR) strstr,
  41.     (VOIDFUNCPTR) strtok,
  42.     (VOIDFUNCPTR) strtok_r,
  43.     (VOIDFUNCPTR) strxfrm
  44.     };
  45. #endif /* __INCstringLibInitc */