24 lines
647 B
C
24 lines
647 B
C
|
/******************************************************************************
|
||
|
*
|
||
|
* Copyright (c) 2017-2019 by Löwenware Ltd
|
||
|
* Please, refer LICENSE file for legal information
|
||
|
*
|
||
|
******************************************************************************/
|
||
|
|
||
|
/**
|
||
|
* @file validate.h
|
||
|
* @author Ilja Kartašov <ik@lowenware.com>
|
||
|
* @brief Validation component header file
|
||
|
*
|
||
|
* @see https://lowenware.com/
|
||
|
*/
|
||
|
|
||
|
#ifndef AISLX_VALIDATE_H_5EEF42FB_E99B_4768_AF28_E548CF72D2E6
|
||
|
#define AISLX_VALIDATE_H_5EEF42FB_E99B_4768_AF28_E548CF72D2E6
|
||
|
|
||
|
|
||
|
int
|
||
|
aislx_validate_email(const char * value);
|
||
|
|
||
|
#endif /* !AISLX_VALIDATE_H */
|