CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 1999
    Posts
    17

    Can't compile with _strspnp()

    I can't compile an application when I use _strspnp even if I include tchar.h. Can someone help me?
    Thanks.


  2. #2
    Join Date
    May 1999
    Posts
    42

    Re: Can't compile with _strspnp()

    Well, this seems to compile fine (VC6, SP2):

    const unsigned char* p1 = (const unsigned char*)"String1";
    const unsigned char* p2 = (const unsigned char*)"String2";
    unsigned char* ptr = _mbsspnp( p1, p2 );



Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured