view src/imap/cmd-noop.c @ 3863:55df57c028d4 HEAD

Added "bool" type and changed all ints that were used as booleans to bool.
author Timo Sirainen <tss@iki.fi>
date Fri, 13 Jan 2006 22:25:57 +0200
parents ce76b6b8ff11
children 65c69a53a7be
line wrap: on
line source

/* Copyright (C) 2002 Timo Sirainen */

#include "common.h"
#include "commands.h"

bool cmd_noop(struct client_command_context *cmd)
{
	return cmd_sync(cmd, 0, 0, "OK NOOP completed.");
}