mcorest_api_json_write_ulong

Write an unsigned long value.

For an overview see page mcorest_api_json_write_*

Prototype

 
    MCO_RET mcorest_api_json_write_ulong( mcorest_api_json_write_ctx_t *ctx, unsigned long u );
     

Arguments

ctx Pointer to the JSON write context structure
u Unsigned long integer value to write

Description

This function writes an unsigned long value.

Return Codes

MCO_S_OK = 0 Success
MCO_E_REST_* Any of the Web Services Error Codes

Example

 
    static void print_ulong(mcorest_api_json_write_ctx_t *jctx,
                    unsigned long u)
    {
        mcorest_api_json_write_object_begin(jctx);
        mcorest_api_json_write_key(jctx, "ulong_value");
        mcorest_api_json_write_ulong(jctx, u);
        ...
        mcorest_api_json_write_object_end(jctx);
        ...
    }
     

Files

Header file:
mcorestapi.h
Source file:
jsonwr.c
Library:
libmcorest.a