cfunc.dcount

C Function/C Functions, Releases: AP 6.1

Pick/BASIC 'dcount()' functionality from C.

Syntax

int _CP_dcount(int* result, CPSTR* string1, CPSTR* string2)

Description

equivalent to the Pick/BASIC statement: result = dcount(string1, string2)

This function returns -1 if an error occurs. The error code is contained in _CP_errno.

Example

/* The following example prints '3'. */

CPSTR * s = _CP_mkstr('bbc');
CPSTR * t = _CP_mkstr('b');
int i;

_CP_dcount(&i,s,t);
_CP_unix_env();
printf('%d\n', i);

See Also

Command Name Type Description
cfunc.introduction Introductory Overview

User Comments

What do you think?

Share your experience or ask a question by using the form below.

Login to leave your comments.