1/*
2 * Copyright (c) 1989 Regents of the University of California.
3 * All rights reserved.  The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
7#include <popper.h>
8RCSID("$Id$");
9
10/*
11 *  last:   Display the last message touched in a POP session
12 */
13
14int
15pop_last (POP *p)
16{
17    return (pop_msg(p,POP_SUCCESS,"%u is the last message seen.",p->last_msg));
18}
19