Deleted Added
full compact
locate.bigram.c (50477) locate.bigram.c (141563)
1/*
2 * Copyright (c) 1995 Wolfram Schneider <wosch@FreeBSD.org>. Berlin.
3 * Copyright (c) 1989, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * James A. Woods.
8 *

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

29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
1/*
2 * Copyright (c) 1995 Wolfram Schneider <wosch@FreeBSD.org>. Berlin.
3 * Copyright (c) 1989, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * James A. Woods.
8 *

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

29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * $FreeBSD: head/usr.bin/locate/bigram/locate.bigram.c 50477 1999-08-28 01:08:13Z peter $
37 * $FreeBSD: head/usr.bin/locate/bigram/locate.bigram.c 141563 2005-02-09 09:13:36Z stefanf $
38 */
39
40#ifndef lint
41static char copyright[] =
42"@(#) Copyright (c) 1989, 1993\n\
43 The Regents of the University of California. All rights reserved.\n";
44#endif /* not lint */
45

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

51 * bigram < sorted_file_names | sort -nr |
52 * awk 'NR <= 128 { printf $2 }' > bigrams
53 *
54 * List bigrams for 'updatedb' script.
55 * Use 'code' to encode a file using this output.
56 */
57
58#include <stdio.h>
38 */
39
40#ifndef lint
41static char copyright[] =
42"@(#) Copyright (c) 1989, 1993\n\
43 The Regents of the University of California. All rights reserved.\n";
44#endif /* not lint */
45

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

51 * bigram < sorted_file_names | sort -nr |
52 * awk 'NR <= 128 { printf $2 }' > bigrams
53 *
54 * List bigrams for 'updatedb' script.
55 * Use 'code' to encode a file using this output.
56 */
57
58#include <stdio.h>
59#include <stdlib.h>
59#include <sys/param.h> /* for MAXPATHLEN */
60#include "locate.h"
61
62u_char buf1[MAXPATHLEN] = " ";
63u_char buf2[MAXPATHLEN];
64u_int bigram[UCHAR_MAX + 1][UCHAR_MAX + 1];
65
66int

--- 43 unchanged lines hidden ---
60#include <sys/param.h> /* for MAXPATHLEN */
61#include "locate.h"
62
63u_char buf1[MAXPATHLEN] = " ";
64u_char buf2[MAXPATHLEN];
65u_int bigram[UCHAR_MAX + 1][UCHAR_MAX + 1];
66
67int

--- 43 unchanged lines hidden ---