eyBuildLib API Reference : eyBuildLib

ebutil

NAME

ebutil - eybuild util tools library

ROUTINES

memshow( ) - list the data of specified memory area
memshow( ) - list the data of specified memory area to a file
isblankstr( ) - check a string is NULL or only include spaces/tabs

DESCRIPTION

eybuild util tools library

INCLUDE

ebutil.h


eyBuildLib : Routines

memshow( )

NAME

memshow( ) - list the data of specified memory area

SYNOPSIS

int memshow
    (
    const void * pstart,
    size_t       size
    )

DESCRIPTION

this routine list the data of specified memory area with 2byte width. this routine write result to stderr.

RETURNS

OK

ALSO SEE

memshow2( )

SEE ALSO

ebutil


eyBuildLib : Routines

memshow( )

NAME

memshow( ) - list the data of specified memory area to a file

SYNOPSIS

int memshow2
    (
    FILE *       fp,
    const void * pstart,
    size_t       size
    )

DESCRIPTION

this routine list the data of specified memory area with 2byte width. this routine write result to a file.

RETURNS

OK

ALSO SEE

memshow( )

SEE ALSO

ebutil


eyBuildLib : Routines

isblankstr( )

NAME

isblankstr( ) - check a string is NULL or only include spaces/tabs

SYNOPSIS

BOOL isblankstr
    (
    const char * pstr
    )

DESCRIPTION

this routine checks a string is NULL or only include spaces/tabs

RETURNS

TRUE if is NULL or only include spaces/tabs, othersize FALSE

SEE ALSO

ebutil