ProSoft Technology MVI69-ADM User Manual

Page 183

Advertising
background image

MVI-ADM ♦ 'C' Programmable

Application Development Function Library - ADM API

'C' Programmable Application Development Module

Developer's Guide

ProSoft Technology, Inc.

Page 183 of 342

February 20, 2013

ADM_SkipToNext

Syntax

char* ADM_SkipToNextl(ADMHANDLE adm_handle, char *buff);

Parameters

adm_handle

Handle returned by previous call to ADM_Open

buff

pointer to string buffer

Description
ADM_SkipToNext skips characters encountered until white space is reached.
The white space is skipped. A pointer to the next non-white space character is
returned. If no character is found, null is returned.

adm_handle must be a valid handle returned from ADM_Open.

buff must be a pointer to a string buffer.

Return Value:
Pointer to char at start of next data.

NULL if no character found.

Example

ADMHANDLE adm_handle;
char *buffer;
buffer = ADM_SkipToNext(adm_handle, buffer);

Advertising