From cad27e97e6370f96903d42aaf345c099af0a03bd Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sat, 11 Dec 2004 12:07:00 +0000 Subject: [PATCH] Changed all references to Sherlock Library by UCW Library. --- lib/alloc.c | 2 +- lib/alloc_str.c | 2 +- lib/arraysort.h | 2 +- lib/asort-test.c | 2 +- lib/bbuf.h | 4 ++-- lib/binheap-node.h | 2 +- lib/binheap-test.c | 2 +- lib/binheap.h | 2 +- lib/carefulio.c | 2 +- lib/charmap.h | 2 +- lib/chartype.h | 6 +++--- lib/clists.h | 6 +++--- lib/conf.c | 2 +- lib/conf.h | 2 +- lib/ctmatch.c | 2 +- lib/db-emul.c | 2 +- lib/db-test.c | 2 +- lib/db.c | 2 +- lib/db.h | 6 +++--- lib/db_internal.h | 2 +- lib/exitstatus.c | 2 +- lib/fastbuf.c | 2 +- lib/fastbuf.h | 6 +++--- lib/fb-buffer.c | 2 +- lib/fb-file.c | 2 +- lib/fb-limfd.c | 2 +- lib/fb-mem.c | 2 +- lib/fb-mmap.c | 2 +- lib/fb-temp.c | 2 +- lib/ff-printf.c | 2 +- lib/ff-utf8.c | 2 +- lib/ff-utf8.h | 2 +- lib/hashfunc.h | 4 ++-- lib/hashtable.h | 4 ++-- lib/heap.h | 2 +- lib/ipaccess.c | 2 +- lib/ipaccess.h | 2 +- lib/lfs.h | 6 +++--- lib/lists.c | 4 ++-- lib/lists.h | 8 ++++---- lib/lizard.h | 4 ++-- lib/log-file.c | 2 +- lib/log.c | 2 +- lib/log2.c | 2 +- lib/mainloop.c | 2 +- lib/mainloop.h | 2 +- lib/math.h | 2 +- lib/md5hex.c | 2 +- lib/mempool-str.c | 2 +- lib/mempool.c | 2 +- lib/mempool.h | 6 +++--- lib/mmap.c | 2 +- lib/pagecache.h | 6 +++--- lib/partmap.c | 2 +- lib/patimatch.c | 2 +- lib/patmatch.c | 2 +- lib/patmatch.h | 2 +- lib/prefetch.h | 6 +++--- lib/prime.c | 2 +- lib/proctitle.c | 2 +- lib/profile.c | 2 +- lib/profile.h | 2 +- lib/random.c | 2 +- lib/randomkey.c | 2 +- lib/realloc.c | 2 +- lib/regex.c | 2 +- lib/regex/Makefile | 2 +- lib/regex/regex-sh.h | 4 ++-- lib/runcmd.c | 2 +- lib/shell/config.c | 2 +- lib/shell/logger.c | 2 +- lib/sorter.c | 2 +- lib/sorter.h | 2 +- lib/str_ctype.c | 2 +- lib/str_lower.c | 2 +- lib/str_upper.c | 2 +- lib/sync.c | 2 +- lib/timer.c | 2 +- lib/unaligned.h | 6 +++--- lib/unicode-utf8.c | 2 +- lib/unicode.h | 2 +- lib/url.c | 2 +- lib/url.h | 6 +++--- lib/wordsplit.c | 2 +- 84 files changed, 113 insertions(+), 113 deletions(-) diff --git a/lib/alloc.c b/lib/alloc.c index 21d96357..59991316 100644 --- a/lib/alloc.c +++ b/lib/alloc.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Memory Allocation + * UCW Library -- Memory Allocation * * (c) 2000 Martin Mares * diff --git a/lib/alloc_str.c b/lib/alloc_str.c index 45ea4912..ab7b4672 100644 --- a/lib/alloc_str.c +++ b/lib/alloc_str.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- String Allocation + * UCW Library -- String Allocation * * (c) 1997 Martin Mares * diff --git a/lib/arraysort.h b/lib/arraysort.h index b47fa8c3..d5a9c787 100644 --- a/lib/arraysort.h +++ b/lib/arraysort.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Universal Array Sorter + * UCW Library -- Universal Array Sorter * * (c) 2003 Martin Mares * diff --git a/lib/asort-test.c b/lib/asort-test.c index e2085423..b84bb53a 100644 --- a/lib/asort-test.c +++ b/lib/asort-test.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Universal Array Sorter Test and Benchmark + * UCW Library -- Universal Array Sorter Test and Benchmark * * (c) 2003 Martin Mares * diff --git a/lib/bbuf.h b/lib/bbuf.h index 5ee6c1a5..c62511c4 100644 --- a/lib/bbuf.h +++ b/lib/bbuf.h @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_BBUF_H -#define _SHERLOCK_BBUF_H +#ifndef _UCW_BBUF_H +#define _UCW_BBUF_H #define GBUF_TYPE byte #define GBUF_PREFIX(x) bb_##x diff --git a/lib/binheap-node.h b/lib/binheap-node.h index 61ed5e97..44be9f4e 100644 --- a/lib/binheap-node.h +++ b/lib/binheap-node.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Binomial Heaps: Declarations + * UCW Library -- Binomial Heaps: Declarations * * (c) 2003 Martin Mares * diff --git a/lib/binheap-test.c b/lib/binheap-test.c index 2a0f026f..bfd28a01 100644 --- a/lib/binheap-test.c +++ b/lib/binheap-test.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Binomial Heaps: Testing + * UCW Library -- Binomial Heaps: Testing * * (c) 2003 Martin Mares * diff --git a/lib/binheap.h b/lib/binheap.h index 74820c00..0c6ee5a5 100644 --- a/lib/binheap.h +++ b/lib/binheap.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Binomial Heaps + * UCW Library -- Binomial Heaps * * (c) 2003 Martin Mares * diff --git a/lib/carefulio.c b/lib/carefulio.c index 7bfeee9b..435bd169 100644 --- a/lib/carefulio.c +++ b/lib/carefulio.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Careful Read/Write + * UCW Library -- Careful Read/Write * * (c) 2004 Martin Mares * diff --git a/lib/charmap.h b/lib/charmap.h index c4ba3cbe..3e348fcf 100644 --- a/lib/charmap.h +++ b/lib/charmap.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Character Code Map (UTF-8 Version) + * UCW Library -- Character Code Map (UTF-8 Version) * * (c) 1998--2004 Martin Mares * (c) 2004 Robert Spalek diff --git a/lib/chartype.h b/lib/chartype.h index 4eea477d..09dc1ec4 100644 --- a/lib/chartype.h +++ b/lib/chartype.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Character Types + * UCW Library -- Character Types * * (c) 1997--2004 Martin Mares * @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_CHARTYPE_H -#define _SHERLOCK_CHARTYPE_H +#ifndef _UCW_CHARTYPE_H +#define _UCW_CHARTYPE_H #define _C_UPPER 1 /* Upper-case letters */ #define _C_LOWER 2 /* Lower-case letters */ diff --git a/lib/clists.h b/lib/clists.h index aed8028a..4fa09546 100644 --- a/lib/clists.h +++ b/lib/clists.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Circular Linked Lists + * UCW Library -- Circular Linked Lists * * (c) 2003 Martin Mares * @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_CLISTS_H -#define _SHERLOCK_CLISTS_H +#ifndef _UCW_CLISTS_H +#define _UCW_CLISTS_H typedef struct cnode { struct cnode *next, *prev; diff --git a/lib/conf.c b/lib/conf.c index 8168eb0c..de659810 100644 --- a/lib/conf.c +++ b/lib/conf.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Reading of configuration files + * UCW Library -- Reading of configuration files * * (c) 2001 Robert Spalek * (c) 2003 Martin Mares diff --git a/lib/conf.h b/lib/conf.h index 18486823..608904b1 100644 --- a/lib/conf.h +++ b/lib/conf.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Reading of configuration files + * UCW Library -- Reading of configuration files * * (c) 2001 Robert Spalek * (c) 2003 Martin Mares diff --git a/lib/ctmatch.c b/lib/ctmatch.c index aa9ab16c..59799070 100644 --- a/lib/ctmatch.c +++ b/lib/ctmatch.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Content-Type Pattern Matching + * UCW Library -- Content-Type Pattern Matching * * (c) 1997 Martin Mares * diff --git a/lib/db-emul.c b/lib/db-emul.c index f16ada4e..62540de8 100644 --- a/lib/db-emul.c +++ b/lib/db-emul.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- SDBM emulator at top of GDBM + * UCW Library -- SDBM emulator at top of GDBM * * (c) 1999 Martin Mares * diff --git a/lib/db-test.c b/lib/db-test.c index b00bead7..23d3f21c 100644 --- a/lib/db-test.c +++ b/lib/db-test.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Database Manager -- Tests and Benchmarks + * UCW Library -- Database Manager -- Tests and Benchmarks * * (c) 1999 Martin Mares * diff --git a/lib/db.c b/lib/db.c index 1d90e2a6..13878de7 100644 --- a/lib/db.c +++ b/lib/db.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Fast Database Management Routines + * UCW Library -- Fast Database Management Routines * * (c) 1999--2001 Martin Mares * diff --git a/lib/db.h b/lib/db.h index b2a13a23..41b81aa1 100644 --- a/lib/db.h +++ b/lib/db.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Fast Database Management Routines + * UCW Library -- Fast Database Management Routines * * (c) 1999--2001 Martin Mares * @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_DB_H -#define _SHERLOCK_DB_H +#ifndef _UCW_DB_H +#define _UCW_DB_H struct sdbm; diff --git a/lib/db_internal.h b/lib/db_internal.h index 72c1ee08..b480a794 100644 --- a/lib/db_internal.h +++ b/lib/db_internal.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Fast Database Management Routines -- Internal Declarations + * UCW Library -- Fast Database Management Routines -- Internal Declarations * * (c) 1999--2001 Martin Mares * diff --git a/lib/exitstatus.c b/lib/exitstatus.c index ed649f6d..4dce53d0 100644 --- a/lib/exitstatus.c +++ b/lib/exitstatus.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Formatting of Process Exit Status + * UCW Library -- Formatting of Process Exit Status * * (c) 2004 Martin Mares * diff --git a/lib/fastbuf.c b/lib/fastbuf.c index 529bcfc3..6fbb2184 100644 --- a/lib/fastbuf.c +++ b/lib/fastbuf.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Fast Buffered I/O + * UCW Library -- Fast Buffered I/O * * (c) 1997--2004 Martin Mares * diff --git a/lib/fastbuf.h b/lib/fastbuf.h index 12047038..800794c7 100644 --- a/lib/fastbuf.h +++ b/lib/fastbuf.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Fast Buffered I/O + * UCW Library -- Fast Buffered I/O * * (c) 1997--2004 Martin Mares * (c) 2004 Robert Spalek @@ -8,8 +8,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_FASTBUF_H -#define _SHERLOCK_FASTBUF_H +#ifndef _UCW_FASTBUF_H +#define _UCW_FASTBUF_H #ifndef EOF #include diff --git a/lib/fb-buffer.c b/lib/fb-buffer.c index 574874f0..b06088e0 100644 --- a/lib/fb-buffer.c +++ b/lib/fb-buffer.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Fast Buffered I/O on Static Buffers + * UCW Library -- Fast Buffered I/O on Static Buffers * * (c) 2003--2004 Martin Mares * diff --git a/lib/fb-file.c b/lib/fb-file.c index 9fa3f8f5..cbfe1b0c 100644 --- a/lib/fb-file.c +++ b/lib/fb-file.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Fast Buffered I/O on Files + * UCW Library -- Fast Buffered I/O on Files * * (c) 1997--2004 Martin Mares * diff --git a/lib/fb-limfd.c b/lib/fb-limfd.c index 351f0032..8370b5eb 100644 --- a/lib/fb-limfd.c +++ b/lib/fb-limfd.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Fast Buffered Input on Limited File Descriptors + * UCW Library -- Fast Buffered Input on Limited File Descriptors * * (c) 2003--2004 Martin Mares * diff --git a/lib/fb-mem.c b/lib/fb-mem.c index 957de0d8..64a1930e 100644 --- a/lib/fb-mem.c +++ b/lib/fb-mem.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Fast Buffered I/O on Memory Streams + * UCW Library -- Fast Buffered I/O on Memory Streams * * (c) 1997--2002 Martin Mares * diff --git a/lib/fb-mmap.c b/lib/fb-mmap.c index b6f82775..7a0c53df 100644 --- a/lib/fb-mmap.c +++ b/lib/fb-mmap.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Fast Buffered I/O on Memory-Mapped Files + * UCW Library -- Fast Buffered I/O on Memory-Mapped Files * * (c) 2002 Martin Mares * diff --git a/lib/fb-temp.c b/lib/fb-temp.c index f7b14483..aff501e8 100644 --- a/lib/fb-temp.c +++ b/lib/fb-temp.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Temporary Fastbufs + * UCW Library -- Temporary Fastbufs * * (c) 2002--2004 Martin Mares * diff --git a/lib/ff-printf.c b/lib/ff-printf.c index d22d421d..cac06b55 100644 --- a/lib/ff-printf.c +++ b/lib/ff-printf.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Printf on Fastbuf Streams + * UCW Library -- Printf on Fastbuf Streams * * (c) 2002 Martin Mares * diff --git a/lib/ff-utf8.c b/lib/ff-utf8.c index b30cb581..a7e40d3c 100644 --- a/lib/ff-utf8.c +++ b/lib/ff-utf8.c @@ -1,5 +1,5 @@ /* - * Sherlock Library: Reading and writing of UTF-8 on Fastbuf Streams + * UCW Library: Reading and writing of UTF-8 on Fastbuf Streams * * (c) 2001--2004 Martin Mares * (c) 2004 Robert Spalek diff --git a/lib/ff-utf8.h b/lib/ff-utf8.h index dd86ba65..83b6b761 100644 --- a/lib/ff-utf8.h +++ b/lib/ff-utf8.h @@ -1,5 +1,5 @@ /* - * Sherlock Library: Reading and writing of UTF-8 on Fastbuf Streams + * UCW Library: Reading and writing of UTF-8 on Fastbuf Streams * * (c) 2001--2004 Martin Mares * (c) 2004 Robert Spalek diff --git a/lib/hashfunc.h b/lib/hashfunc.h index cc799476..ed896e8e 100644 --- a/lib/hashfunc.h +++ b/lib/hashfunc.h @@ -8,8 +8,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_HASHFUNC_H -#define _SHERLOCK_HASHFUNC_H +#ifndef _UCW_HASHFUNC_H +#define _UCW_HASHFUNC_H #include "lib/lib.h" diff --git a/lib/hashtable.h b/lib/hashtable.h index 75276fce..33a7cc3e 100644 --- a/lib/hashtable.h +++ b/lib/hashtable.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Universal Hash Table + * UCW Library -- Universal Hash Table * * (c) 2002--2004 Martin Mares * (c) 2002 Robert Spalek @@ -116,7 +116,7 @@ * undef'd. */ -#ifndef _SHERLOCK_HASHFUNC_H +#ifndef _UCW_HASHFUNC_H #include "lib/hashfunc.h" #endif diff --git a/lib/heap.h b/lib/heap.h index 8404858e..26c94bee 100644 --- a/lib/heap.h +++ b/lib/heap.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Universal Heap Macros + * UCW Library -- Universal Heap Macros * * (c) 2001 Martin Mares * diff --git a/lib/ipaccess.c b/lib/ipaccess.c index d00ac54a..51d9eb58 100644 --- a/lib/ipaccess.c +++ b/lib/ipaccess.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- IP address access lists + * UCW Library -- IP address access lists * * (c) 1997--2001 Martin Mares * diff --git a/lib/ipaccess.h b/lib/ipaccess.h index 291ffe8e..aedb1587 100644 --- a/lib/ipaccess.h +++ b/lib/ipaccess.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- IP address access lists + * UCW Library -- IP address access lists * * (c) 1997--2001 Martin Mares * diff --git a/lib/lfs.h b/lib/lfs.h index 5a103a66..fcd64d76 100644 --- a/lib/lfs.h +++ b/lib/lfs.h @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_LFS_H -#define _SHERLOCK_LFS_H +#ifndef _UCW_LFS_H +#define _UCW_LFS_H #include #include @@ -48,4 +48,4 @@ sh_file_size(byte *name) return len; } -#endif /* !_SHERLOCK_LFS_H */ +#endif /* !_UCW_LFS_H */ diff --git a/lib/lists.c b/lib/lists.c index fa1613be..043c3649 100644 --- a/lib/lists.c +++ b/lib/lists.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Linked Lists + * UCW Library -- Linked Lists * * (c) 1997--1999 Martin Mares * @@ -9,7 +9,7 @@ #include "lib/lib.h" -#define _SHERLOCK_LISTS_C +#define _UCW_LISTS_C #include "lib/lists.h" LIST_INLINE void diff --git a/lib/lists.h b/lib/lists.h index 68c7497f..756085f7 100644 --- a/lib/lists.h +++ b/lib/lists.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Linked Lists + * UCW Library -- Linked Lists * * (c) 1997--1999 Martin Mares * @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_LISTS_H -#define _SHERLOCK_LISTS_H +#ifndef _UCW_LISTS_H +#define _UCW_LISTS_H /* * I admit the list structure is very tricky and also somewhat awkward, @@ -53,7 +53,7 @@ void add_tail_list(list *, list *); void init_list(list *); void insert_node(node *, node *); -#if !defined(_SHERLOCK_LISTS_C) && defined(__GNUC__) +#if !defined(_UCW_LISTS_C) && defined(__GNUC__) #define LIST_INLINE extern inline #include "lib/lists.c" #undef LIST_INLINE diff --git a/lib/lizard.h b/lib/lizard.h index bc7f317e..aa616515 100644 --- a/lib/lizard.h +++ b/lib/lizard.h @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_LIZARD_H -#define _SHERLOCK_LIZARD_H +#ifndef _UCW_LIZARD_H +#define _UCW_LIZARD_H #define LIZARD_NEEDS_CHARS 8 /* The compression routine needs input buffer 8 characters longer, because it diff --git a/lib/log-file.c b/lib/log-file.c index 5916acb5..ca144d6e 100644 --- a/lib/log-file.c +++ b/lib/log-file.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Keeping of Log Files + * UCW Library -- Keeping of Log Files * * (c) 1997--2004 Martin Mares * diff --git a/lib/log.c b/lib/log.c index 498dba66..92066d3e 100644 --- a/lib/log.c +++ b/lib/log.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Logging + * UCW Library -- Logging * * (c) 1997--2004 Martin Mares * diff --git a/lib/log2.c b/lib/log2.c index 08b27bcf..8fedaf6b 100644 --- a/lib/log2.c +++ b/lib/log2.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Binary Logarithm + * UCW Library -- Binary Logarithm * * (c) 1997 Martin Mares * diff --git a/lib/mainloop.c b/lib/mainloop.c index 4f3766d0..9ab717ec 100644 --- a/lib/mainloop.c +++ b/lib/mainloop.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Main Loop + * UCW Library -- Main Loop * * (c) 2004 Martin Mares * diff --git a/lib/mainloop.h b/lib/mainloop.h index ffbf4e4d..24e2377e 100644 --- a/lib/mainloop.h +++ b/lib/mainloop.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Main Loop + * UCW Library -- Main Loop * * (c) 2004 Martin Mares * diff --git a/lib/math.h b/lib/math.h index 3c55e987..d79c7bec 100644 --- a/lib/math.h +++ b/lib/math.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Stub for including math.h, avoiding name collisions + * UCW Library -- Stub for including math.h, avoiding name collisions * * (c) 2003 Martin Mares * diff --git a/lib/md5hex.c b/lib/md5hex.c index af284fa1..b9eda391 100644 --- a/lib/md5hex.c +++ b/lib/md5hex.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- MD5 Binary <-> Hex Conversions + * UCW Library -- MD5 Binary <-> Hex Conversions * * (c) 1997 Martin Mares * diff --git a/lib/mempool-str.c b/lib/mempool-str.c index 065597d6..acee64a8 100644 --- a/lib/mempool-str.c +++ b/lib/mempool-str.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Memory Pools (String Operations) + * UCW Library -- Memory Pools (String Operations) * * (c) 2004 Martin Mares * diff --git a/lib/mempool.c b/lib/mempool.c index e28512f6..b0c03eed 100644 --- a/lib/mempool.c +++ b/lib/mempool.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Memory Pools (One-Time Allocation) + * UCW Library -- Memory Pools (One-Time Allocation) * * (c) 1997--2001 Martin Mares * diff --git a/lib/mempool.h b/lib/mempool.h index 6058c5ee..8d964e4d 100644 --- a/lib/mempool.h +++ b/lib/mempool.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Memory Pools + * UCW Library -- Memory Pools * * (c) 1997--2004 Martin Mares * @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_POOLS_H -#define _SHERLOCK_POOLS_H +#ifndef _UCW_POOLS_H +#define _UCW_POOLS_H #ifndef POOL_ALIGN #define POOL_ALIGN CPU_STRUCT_ALIGN diff --git a/lib/mmap.c b/lib/mmap.c index 1393a6b1..aa636222 100644 --- a/lib/mmap.c +++ b/lib/mmap.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Mapping of Files + * UCW Library -- Mapping of Files * * (c) 1999--2002 Martin Mares * diff --git a/lib/pagecache.h b/lib/pagecache.h index a9368df9..ef4bf5af 100644 --- a/lib/pagecache.h +++ b/lib/pagecache.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- File Page Cache + * UCW Library -- File Page Cache * * (c) 1999--2002 Martin Mares * @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_PAGECACHE_H -#define _SHERLOCK_PAGECACHE_H +#ifndef _UCW_PAGECACHE_H +#define _UCW_PAGECACHE_H #include "lib/lists.h" diff --git a/lib/partmap.c b/lib/partmap.c index d3892ff5..c0c2a960 100644 --- a/lib/partmap.c +++ b/lib/partmap.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Mapping of File Parts + * UCW Library -- Mapping of File Parts * * (c) 2003 Martin Mares * (c) 2003 Robert Spalek diff --git a/lib/patimatch.c b/lib/patimatch.c index b848f54b..a0e29af9 100644 --- a/lib/patimatch.c +++ b/lib/patimatch.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Shell-Like Case-Insensitive Pattern Matching (currently only '?' and '*') + * UCW Library -- Shell-Like Case-Insensitive Pattern Matching (currently only '?' and '*') * * (c) 1997 Martin Mares * diff --git a/lib/patmatch.c b/lib/patmatch.c index f03a2deb..bfd8aa50 100644 --- a/lib/patmatch.c +++ b/lib/patmatch.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Shell-Like Pattern Matching (currently only '?' and '*') + * UCW Library -- Shell-Like Pattern Matching (currently only '?' and '*') * * (c) 1997 Martin Mares * diff --git a/lib/patmatch.h b/lib/patmatch.h index 17712619..817c92da 100644 --- a/lib/patmatch.h +++ b/lib/patmatch.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Generic Shell-Like Pattern Matching (currently only '?' and '*') + * UCW Library -- Generic Shell-Like Pattern Matching (currently only '?' and '*') * * (c) 1997 Martin Mares * diff --git a/lib/prefetch.h b/lib/prefetch.h index 5c675d17..46d10ca3 100644 --- a/lib/prefetch.h +++ b/lib/prefetch.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Prefetch + * UCW Library -- Prefetch * * (c) 1997--2003 Martin Mares * @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_PREFETCH_H -#define _SHERLOCK_PREFETCH_H +#ifndef _UCW_PREFETCH_H +#define _UCW_PREFETCH_H #if defined(__athlon) || defined(__i686) diff --git a/lib/prime.c b/lib/prime.c index 9be4c411..eec6f5d3 100644 --- a/lib/prime.c +++ b/lib/prime.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Prime Number Tests + * UCW Library -- Prime Number Tests * * (c) 1997 Martin Mares * diff --git a/lib/proctitle.c b/lib/proctitle.c index 111ab4b9..ec65012f 100644 --- a/lib/proctitle.c +++ b/lib/proctitle.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Setting of Process Title + * UCW Library -- Setting of Process Title * * (c) 2001 Martin Mares * diff --git a/lib/profile.c b/lib/profile.c index af84b3ea..feed51f5 100644 --- a/lib/profile.c +++ b/lib/profile.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Poor Man's Profiler + * UCW Library -- Poor Man's Profiler * * (c) 2001 Martin Mares * diff --git a/lib/profile.h b/lib/profile.h index 3fe2b975..c3c29df1 100644 --- a/lib/profile.h +++ b/lib/profile.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Poor Man's Profiler + * UCW Library -- Poor Man's Profiler * * (c) 2001 Martin Mares * diff --git a/lib/random.c b/lib/random.c index e4ffecdc..7f88489d 100644 --- a/lib/random.c +++ b/lib/random.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Unbiased Range Correction for random() + * UCW Library -- Unbiased Range Correction for random() * * (c) 1998 Martin Mares * diff --git a/lib/randomkey.c b/lib/randomkey.c index c98b13ab..a799a1b0 100644 --- a/lib/randomkey.c +++ b/lib/randomkey.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Cryptographically Safe Random Key Generator + * UCW Library -- Cryptographically Safe Random Key Generator * * (c) 2002 Martin Mares * diff --git a/lib/realloc.c b/lib/realloc.c index c4328870..6d6b0baf 100644 --- a/lib/realloc.c +++ b/lib/realloc.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Memory Re-allocation + * UCW Library -- Memory Re-allocation * * (c) 1997 Martin Mares * diff --git a/lib/regex.c b/lib/regex.c index f952333e..e1054fb3 100644 --- a/lib/regex.c +++ b/lib/regex.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Interface to Regular Expression Libraries + * UCW Library -- Interface to Regular Expression Libraries * * (c) 1997--2004 Martin Mares * (c) 2001 Robert Spalek diff --git a/lib/regex/Makefile b/lib/regex/Makefile index d688a775..8d73e122 100644 --- a/lib/regex/Makefile +++ b/lib/regex/Makefile @@ -1,4 +1,4 @@ -# Makefile for the Sherlock Regex Library (c) 2004 Martin Mares +# Makefile for the UCW Regex Library (c) 2004 Martin Mares DIRS+=lib/regex diff --git a/lib/regex/regex-sh.h b/lib/regex/regex-sh.h index eb0a45dd..723d2d8f 100644 --- a/lib/regex/regex-sh.h +++ b/lib/regex/regex-sh.h @@ -3,8 +3,8 @@ * (renamed to sh_* to avoid clashes with the system libraries) */ -#ifndef _SHERLOCK_REGEX_H -#define _SHERLOCK_REGEX_H +#ifndef _UCW_REGEX_H +#define _UCW_REGEX_H #define regfree sh_regfree #define regexec sh_regexec diff --git a/lib/runcmd.c b/lib/runcmd.c index 4035c501..c7fe85c4 100644 --- a/lib/runcmd.c +++ b/lib/runcmd.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Running of Commands + * UCW Library -- Running of Commands * * (c) 2004 Martin Mares * diff --git a/lib/shell/config.c b/lib/shell/config.c index e00ca8f4..6257fd51 100644 --- a/lib/shell/config.c +++ b/lib/shell/config.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Shell Interface to Configuration Files + * UCW Library -- Shell Interface to Configuration Files * * (c) 2002 Martin Mares * diff --git a/lib/shell/logger.c b/lib/shell/logger.c index 6ecb8766..def241f3 100644 --- a/lib/shell/logger.c +++ b/lib/shell/logger.c @@ -1,5 +1,5 @@ /* - * Sherlock Utilities -- A Simple Logger for use in shell scripts + * UCW Library Utilities -- A Simple Logger for use in shell scripts * * (c) 2001 Martin Mares * diff --git a/lib/sorter.c b/lib/sorter.c index bda973e5..f53f2057 100644 --- a/lib/sorter.c +++ b/lib/sorter.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Universal Sorter + * UCW Library -- Universal Sorter * * (c) 2001--2002 Martin Mares * diff --git a/lib/sorter.h b/lib/sorter.h index d8d9dc6d..c33103dd 100644 --- a/lib/sorter.h +++ b/lib/sorter.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Universal Sorter + * UCW Library -- Universal Sorter * * (c) 2001--2004 Martin Mares * (c) 2004 Robert Spalek diff --git a/lib/str_ctype.c b/lib/str_ctype.c index 9987f09f..2857d8e4 100644 --- a/lib/str_ctype.c +++ b/lib/str_ctype.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Character Classes + * UCW Library -- Character Classes * * (c) 1998--2004 Martin Mares * diff --git a/lib/str_lower.c b/lib/str_lower.c index 6d2321b6..f548a116 100644 --- a/lib/str_lower.c +++ b/lib/str_lower.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Lowercase Map + * UCW Library -- Lowercase Map * * (c) 1997--2004 Martin Mares * diff --git a/lib/str_upper.c b/lib/str_upper.c index 062b60d1..e527956e 100644 --- a/lib/str_upper.c +++ b/lib/str_upper.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Uppercase Map + * UCW Library -- Uppercase Map * * (c) 1997--2004 Martin Mares * diff --git a/lib/sync.c b/lib/sync.c index 76bd5901..8877e310 100644 --- a/lib/sync.c +++ b/lib/sync.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Syncing Directories + * UCW Library -- Syncing Directories * * (c) 2004 Martin Mares */ diff --git a/lib/timer.c b/lib/timer.c index 42cc9ebc..c8a0d474 100644 --- a/lib/timer.c +++ b/lib/timer.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Execution Timing + * UCW Library -- Execution Timing * * (c) 1997 Martin Mares * diff --git a/lib/unaligned.h b/lib/unaligned.h index 029452d3..6da60d4d 100644 --- a/lib/unaligned.h +++ b/lib/unaligned.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Fast Access to Unaligned Data + * UCW Library -- Fast Access to Unaligned Data * * (c) 1997--2003 Martin Mares * @@ -7,8 +7,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_UNALIGNED_H -#define _SHERLOCK_UNALIGNED_H +#ifndef _UCW_UNALIGNED_H +#define _UCW_UNALIGNED_H #ifdef CPU_ALLOW_UNALIGNED #define GET_U16(p) (*((u16 *)(p))) diff --git a/lib/unicode-utf8.c b/lib/unicode-utf8.c index 3a758589..5f7b8186 100644 --- a/lib/unicode-utf8.c +++ b/lib/unicode-utf8.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- UTF-8 Functions + * UCW Library -- UTF-8 Functions * * (c) 1997--2004 Martin Mares * (c) 2003 Robert Spalek diff --git a/lib/unicode.h b/lib/unicode.h index 40e8ae09..4fd9575f 100644 --- a/lib/unicode.h +++ b/lib/unicode.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Unicode Characters + * UCW Library -- Unicode Characters * * (c) 1997--2004 Martin Mares * (c) 2004 Robert Spalek diff --git a/lib/url.c b/lib/url.c index 0f574d1b..f805e32f 100644 --- a/lib/url.c +++ b/lib/url.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- URL Functions + * UCW Library -- URL Functions * * (c) 1997--2004 Martin Mares * (c) 2001 Robert Spalek diff --git a/lib/url.h b/lib/url.h index 45bc867e..30fc8fd7 100644 --- a/lib/url.h +++ b/lib/url.h @@ -1,5 +1,5 @@ /* - * Sherlock Library -- URL Functions + * UCW Library -- URL Functions * * (c) 1997--2004 Martin Mares * (c) 2001 Robert Spalek @@ -8,8 +8,8 @@ * of the GNU Lesser General Public License. */ -#ifndef _SHERLOCK_URL_H -#define _SHERLOCK_URL_H +#ifndef _UCW_URL_H +#define _UCW_URL_H #define MAX_URL_SIZE 1024 diff --git a/lib/wordsplit.c b/lib/wordsplit.c index 1a488f2e..d13f2108 100644 --- a/lib/wordsplit.c +++ b/lib/wordsplit.c @@ -1,5 +1,5 @@ /* - * Sherlock Library -- Word Splitting + * UCW Library -- Word Splitting * * (c) 1997 Martin Mares * (c) 2004 Robert Spalek -- 2.39.2