Deleted Added
sdiff udiff text old ( 84745 ) new ( 93520 )
full compact
1#ifndef lint
2static const char rcsid[] =
3 "$FreeBSD: head/usr.sbin/pkg_install/lib/match.c 84745 2001-10-10 06:58:42Z sobomax $";
4#endif
5
6/*
7 * FreeBSD install - a package for the installation and maintainance
8 * of non-core utilities.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright

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

18 *
19 * Maxim Sobolev
20 * 24 February 2001
21 *
22 * Routines used to query installed packages.
23 *
24 */
25
26#include "lib.h"
27#include <err.h>
28#include <fnmatch.h>
29#include <fts.h>
30#include <regex.h>
31
32/*
33 * Simple structure representing argv-like

--- 195 unchanged lines hidden ---