view src/imap/cmd-unsubscribe.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 61abed5f7864
children 46d9ee79f292
line wrap: on
line source

/* Copyright (C) 2002 Timo Sirainen */

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

bool cmd_unsubscribe(struct client_command_context *cmd)
{
	return _cmd_subscribe_full(cmd, FALSE);
}