File: null-validate.c

package info (click to toggle)
mailfront 0.98-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 648 kB
  • ctags: 495
  • sloc: ansic: 3,033; sh: 1,487; makefile: 78
file content (20 lines) | stat: -rw-r--r-- 306 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <string.h>
#include <msg/msg.h>
#include "mailfront.h"

const response* backend_validate_init(void)
{
  return 0;
}

const response* backend_validate_sender(str* sender)
{
  return 0;
  (void)sender;
}

const response* backend_validate_recipient(str* recipient)
{
  return 0;
  (void)recipient;
}