FREE Subscription to Dr. Dobb’s Digest: Same Great Content, New Digital Edition
Site Archive (Complete)
Dobbs M-Dev
Email
Print
Reprint

add to:
Del.icio.us
Digg
Google
Furl
Slashdot
Y! MyWeb
Blink
February 01, 2003

Avoiding the Visual C++ Runtime Library

(Page 9 of 16)
February 2003/Avoiding the Visual C++ Runtime Library

Listing 2 Accessing the command-line arguments


    LPCTSTR lpszCmdLine;

    lpszCmdLine = GetCommandLine();

    if(*lpszCmdLine == '\"')
    {
        while(  (*(++lpszCmdLine) != '\"') &&
            (*lpszCmdLine != '\0'))
        {}

        if ( *lpszCmdLine == '\"')
        {
            ++lpszCmdLine;
        }
    }
    else
    {
        while(*lpszCmdLine > ' ')
        {
            ++lpszCmdLine;
        }
    }

    while(  *lpszCmdLine &&
            (*lpszCmdLine <= ' '))
    {
        ++lpszCmdLine;
    }

    return lpszCmdLine;

Previous Page | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 Next Page
TOP 5 ARTICLES
No Top Articles.



MICROSITES
FEATURED TOPIC

ADDITIONAL TOPICS

INFO-LINK