/*
*
* @(#)84        1.1  src/examples/common/os2/brtns.h, examples.src, os2dce21.dss, 960602a.1  11/17/95  10:26:20
*
* COMPONENT_NAME:  examples.src
*
* FUNCTIONS:
*
* ORIGINS: 27
*
* OBJECT CODE ONLY SOURCE MATERIALS
*
* (C) COPYRIGHT International Business Machines Corp. 1992, 1994
*  All Rights Reserved
*  Licensed Materials - Property of IBM
*
*  US Government Users Restricted Rights - Use, duplication or
*  disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
*/
 /********************************************************************/
 /*                                                                  */
 /* PROGRAM NAME: btns.h                                             */
 /*                                                                  */
 /* DESCRIPTIVE NAME: bcopy, bcmp, bzero, ffs and strcasecmp         */
 /*                      function declarations                       */
 /*                                                                  */
 /********************************************************************/

extern void bcopy(char *Src, char *Dest, int Len);
extern int  bcmp(char *Str1, char *Str2, int Len);
extern void bzero(char *Str, int Len);
extern int ffs(int Index);
extern int strcasecmp(char *s1, char *s2);
