mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 06:06:00 -06:00
16 lines
453 B
C
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
|