Deleted Added
full compact
caesar.c (90828) caesar.c (114725)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Rick Adams.
7 *
8 * Authors:

--- 25 unchanged lines hidden (view full) ---

34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 * SUCH DAMAGE.
40 */
41
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Rick Adams.
7 *
8 * Authors:

--- 25 unchanged lines hidden (view full) ---

34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 * SUCH DAMAGE.
40 */
41
42#if 0
42#ifndef lint
43static const char copyright[] =
44"@(#) Copyright (c) 1989, 1993\n\
45 The Regents of the University of California. All rights reserved.\n";
46#endif /* not lint */
47
48#ifndef lint
43#ifndef lint
44static const char copyright[] =
45"@(#) Copyright (c) 1989, 1993\n\
46 The Regents of the University of California. All rights reserved.\n";
47#endif /* not lint */
48
49#ifndef lint
49#if 0
50static const char sccsid[] = "@(#)caesar.c 8.1 (Berkeley) 5/31/93";
50static const char sccsid[] = "@(#)caesar.c 8.1 (Berkeley) 5/31/93";
51#else
52static const char rcsid[] =
53 "$FreeBSD: head/games/caesar/caesar.c 90828 2002-02-18 05:15:19Z imp $";
54#endif
55#endif /* not lint */
51#endif /* not lint */
52#endif
53#include <sys/cdefs.h>
54__FBSDID("$FreeBSD: head/games/caesar/caesar.c 114725 2003-05-05 09:52:25Z obrien $");
56
57#include <errno.h>
58#include <math.h>
59#include <stdio.h>
60#include <stdlib.h>
61#include <string.h>
62#include <ctype.h>
63#include <unistd.h>

--- 106 unchanged lines hidden ---
55
56#include <errno.h>
57#include <math.h>
58#include <stdio.h>
59#include <stdlib.h>
60#include <string.h>
61#include <ctype.h>
62#include <unistd.h>

--- 106 unchanged lines hidden ---