16 lines
389 B
C
16 lines
389 B
C
|
#ifndef __VALIDATE_H
|
||
|
#define __VALIDATE_H
|
||
|
|
||
|
#ifndef __MASKFLD_H
|
||
|
#include <maskfld.h>
|
||
|
#endif
|
||
|
|
||
|
bool validate(int fn, TMask_field& f, KEY k, const TString_array& parms);
|
||
|
|
||
|
bool pi_check (const char* stato, const char* pi);
|
||
|
bool cf_check (const char* stato, const char* cf);
|
||
|
int iban_check(const TString& b, TString& msg);
|
||
|
int bban_check(const TString& b, TString& msg);
|
||
|
|
||
|
#endif // __VALIDATE_H
|