Deleted Added
full compact
C.c (91382) C.c (92920)
1/*
2 * Copyright (c) 1987, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

33
34#if 0
35#ifndef lint
36static char sccsid[] = "@(#)C.c 8.4 (Berkeley) 4/2/94";
37#endif
38#endif
39
40#include <sys/cdefs.h>
1/*
2 * Copyright (c) 1987, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

33
34#if 0
35#ifndef lint
36static char sccsid[] = "@(#)C.c 8.4 (Berkeley) 4/2/94";
37#endif
38#endif
39
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD: head/usr.bin/ctags/C.c 91382 2002-02-27 14:56:58Z dwmalone $");
41__FBSDID("$FreeBSD: head/usr.bin/ctags/C.c 92920 2002-03-22 01:22:50Z imp $");
42
43#include <limits.h>
44#include <stdio.h>
45#include <string.h>
46
47#include "ctags.h"
48
42
43#include <limits.h>
44#include <stdio.h>
45#include <string.h>
46
47#include "ctags.h"
48
49static int func_entry __P((void));
50static void hash_entry __P((void));
51static void skip_string __P((int));
52static int str_entry __P((int));
49static int func_entry(void);
50static void hash_entry(void);
51static void skip_string(int);
52static int str_entry(int);
53
54/*
55 * c_entries --
56 * read .c and .h files and call appropriate routines
57 */
58void
59c_entries()
60{

--- 464 unchanged lines hidden ---
53
54/*
55 * c_entries --
56 * read .c and .h files and call appropriate routines
57 */
58void
59c_entries()
60{

--- 464 unchanged lines hidden ---