ultimatepp/uppdev/MyDbase/compare.h
cxl 4a1c627474 Adding uppdev....
git-svn-id: svn://ultimatepp.org/upp/trunk@328 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2008-08-15 08:36:24 +00:00

16 lines
453 B
C

#ifndef _src_dbase_compare_h_
#define _src_dbase_compare_h_
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <string.h>
#include <ctype.h>
bool IsEqual(const Value &val1, const String &s);
bool IsBigger(const Value &val1, const String &s);
bool IsSmaller(const Value &val1, const String &s);
bool IsBiggerEqual(const Value &val1, const String &s);
bool IsSmallerEqual(const Value &val1, const String &s);
#endif