#include <string.h>
#include "String.h"
#include "SubString.h"
Include dependency graph for SubString.C:
Go to the source code of this file.
Functions | |
bool | operator== (const char *Cstr, SubString s) |
bool | operator!= (const char *Cstr, SubString s) |
bool | operator<= (const char *Cstr, SubString s) |
bool | operator>= (const char *Cstr, SubString s) |
bool | operator< (const char *Cstr, SubString s) |
bool | operator> (const char *Cstr, SubString s) |
You may use this source code without limitation and without fee as long as you include:
This software was written and is copyrighted by Ian Kaplan, Bear Products International, www.bearcave.com, 2001, 2002, 2003.This software is provided "as is", without any warrenty or claim as to its usefulness. Anyone who uses this source code uses it at their own risk. Nor is any support provided by Ian Kaplan and Bear Products International.
Please send any bug fixes or suggested source changes to:
Definition in file SubString.C.
Function Documentation
|
Definition at line 593 of file SubString.C.
00594 { 00595 return (s != Cstr); 00596 } // global operator != |
|
Definition at line 610 of file SubString.C.
00611 { 00612 return (s > Cstr); 00613 } // global operator < |
|
Definition at line 599 of file SubString.C.
00600 { 00601 return (s >= Cstr); 00602 } // global operator <= |
|
Definition at line 587 of file SubString.C.
00588 { 00589 return (s == Cstr); 00590 } // global operator == |
|
Definition at line 615 of file SubString.C.
00616 { 00617 return (s < Cstr); 00618 } // global operator > |
|
Definition at line 605 of file SubString.C.
00606 { 00607 return (s <= Cstr); 00608 } // global operator >= |