• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

READMEH A D10-Feb-20224.7 KiB8374

bchange.cH A D10-Feb-20221.9 KiB5111

bmove_upp.cH A D10-Feb-20221.7 KiB456

conf_to_src.cH A D10-Feb-202216.4 KiB533385

ctype-big5.cH A D10-Feb-2022358.6 KiB6,9386,757

ctype-bin.cH A D10-Feb-202216 KiB597440

ctype-cp932.cH A D10-Feb-20221.8 MiB34,89234,699

ctype-czech.cH A D10-Feb-202226 KiB660406

ctype-euc_kr.cH A D10-Feb-2022520.6 KiB10,18410,042

ctype-eucjpms.cH A D10-Feb-20223.5 MiB67,72467,557

ctype-extra.cH A D10-Feb-2022372.5 KiB7,2396,955

ctype-gb2312.cH A D10-Feb-2022341.7 KiB6,5896,465

ctype-gbk.cH A D10-Feb-2022568.5 KiB10,86910,750

ctype-latin1.cH A D10-Feb-202230.7 KiB838702

ctype-mb.cH A D10-Feb-202243.9 KiB1,3981,039

ctype-mb.inlH A D10-Feb-20226.7 KiB264227

ctype-simple.cH A D10-Feb-202248.8 KiB2,1231,482

ctype-sjis.cH A D10-Feb-20221.7 MiB34,27134,096

ctype-tis620.cH A D10-Feb-202246.4 KiB1,046923

ctype-uca.cH A D10-Feb-20222.1 MiB39,39337,245

ctype-ucs2.cH A D10-Feb-202295.8 KiB3,5462,931

ctype-ujis.cH A D10-Feb-20223.5 MiB67,46867,268

ctype-utf8.cH A D10-Feb-2022372.5 KiB8,1247,312

ctype-win1250ch.cH A D10-Feb-202226.5 KiB725561

ctype.cH A D10-Feb-202234.2 KiB1,213884

decimal.cH A D10-Feb-202289.2 KiB3,2472,325

do_ctype.cH A D10-Feb-20224.8 KiB190143

dtoa.cH A D10-Feb-202265.1 KiB2,8232,078

dump_map.cH A D10-Feb-20222.2 KiB9360

int2str.cH A D10-Feb-20225.3 KiB17779

is_prefix.cH A D10-Feb-20221.6 KiB457

json_lib.cH A D10-Feb-202248.2 KiB1,8551,420

latin2.defH A D10-Feb-20225.8 KiB479478

llstr.cH A D10-Feb-20221.8 KiB5411

longlong2str.cH A D10-Feb-20224.2 KiB15689

my_strchr.cH A D10-Feb-20223.9 KiB10445

my_strtoll10.cH A D10-Feb-20226.7 KiB256152

my_vsnprintf.cH A D10-Feb-202223.1 KiB925677

str2int.cH A D10-Feb-20227.1 KiB21488

strappend.cH A D10-Feb-20221.8 KiB5110

strcend.cH A D10-Feb-20221.7 KiB499

strcoll.inlH A D10-Feb-202210.3 KiB339295

strcont.cH A D10-Feb-20221.8 KiB5715

strend.cH A D10-Feb-20221.8 KiB496

strfill.cH A D10-Feb-20221.7 KiB477

strings_def.hH A D10-Feb-20224.2 KiB12147

strmake.cH A D10-Feb-20222.3 KiB6923

strmov.cH A D10-Feb-20221.8 KiB499

strmov_overlapp.cH A D10-Feb-2022884 267

strnlen.cH A D10-Feb-20221.7 KiB488

strnmov.cH A D10-Feb-20221.7 KiB4710

strxmov.cH A D10-Feb-20222.2 KiB6114

strxnmov.cH A D10-Feb-20222.5 KiB7523

t_ctype.hH A D10-Feb-20225.5 KiB260211

uca-dump.cH A D10-Feb-20228.4 KiB355236

uctypedump.cH A D10-Feb-20226.1 KiB236172

utr11-dump.cH A D10-Feb-20222.9 KiB13189

xml.cH A D10-Feb-202213.9 KiB575444

README

1File   : README
2Author : Richard A. O'Keefe.
3Updated: 30 April 1984
4Purpose: Explain the new strings package.
5
6    The UNIX string libraries (described in the string(3) manual page)
7differ from UNIX to UNIX (e.g. strtok is not in V7 or 4.1bsd).  Worse,
8the sources are not in the public domain, so that if there is a string
9routine which is nearly what you want but not quite you can't  take  a
10copy  and  modify it.  And of course C programmers on non-UNIX systems
11are at the mercy of their supplier.
12
13    This package was designed to let me do reasonable things with  C's
14strings  whatever UNIX (V7, PaNiX, UX63, 4.1bsd) I happen to be using.
15Everything in the System III manual is here and does just what the  S3
16manual  says  it does.  There are also lots of new goodies.  I'm sorry
17about the names, but the routines do have to work  on  asphyxiated-at-
18birth  systems  which  truncate identifiers.  The convention is that a
19routine is called
20 str [n] [c] <operation>
21If there is an "n", it means that the function takes an (int) "length"
22argument, which bounds the number of characters to be moved or  looked
23at.  If the function has a "set" argument, a "c" in the name indicates
24that  the complement of the set is used.  Functions or variables whose
25names start with _ are support routines which aren't really meant  for
26general  use.  I don't know what the "p" is doing in "strpbrk", but it
27is there in the S3 manual so it's here too.  "istrtok" does not follow
28this rule, but with 7 letters what can you do?
29
30    I have included new versions of atoi(3) and atol(3) as well.  They
31use a new primitive str2int, which takes a pair of bounds and a radix,
32and does much more thorough checking than the normal atoi and atol do.
33The result returned by atoi & atol is valid if and only if errno == 0.
34There is also an output conversion routine int2str, with itoa and ltoa
35as interface macros.  Only after writing int2str did I notice that the
36str2int routine has no provision for unsigned numbers.  On reflection,
37I don't greatly care.   I'm afraid that int2str may depend on your "C"
38compiler in unexpected ways.  Do check the code with -S.
39
40    Several of these routines have "asm" inclusions conditional on the
41VaxAsm option.  These insertions can make the routines which have them
42quite a bit faster, but there is a snag.  The VAX architects, for some
43reason best known to themselves and their therapists, decided that all
44"strings" were shorter than 2^16 bytes.  Even when the length operands
45are in 32-bit registers, only 16 bits count.  So the "asm" versions do
46not work for long strings.  If you can guarantee that all your strings
47will be short, define VaxAsm in the makefile, but in general, and when
48using other machines, do not define it.
49
50    To use this library, you need the "strings.a" library file and the
51"strings.h" and "ctypes.h" header files.  The other header  files  are
52for compiling the library itself, though if you are hacking extensions
53you  may  find  them useful.  General users really shouldn't see them.
54I've defined a few macros I find useful in "strings.h"; if you have no
55need for "index", "rindex", "streql", and "beql", just edit them  out.
56On the 4.1bsd system I am using declaring all these functions 'extern'
57does not mean that they will all be loaded; but only the ones you use.
58When using lesser systems you may find it necessary to break strings.h
59up, or you could get by with just adding "extern" declarations for the
60functions you want as you need them.  Many of these functions have the
61same names as functions in the "standard C library", by design as this
62is a replacement/reimplementation of part of that library.  So you may
63have to talk the loader into loading this library first.   Again, I've
64found no problems on 4.1bsd.
65
66    You may wonder at my failure to provide manual pages for this code.
67For the things in V7, 4.?, or SIII, you should be able to use whichever
68manual page came with that system,  and anything I might write would be
69so like it as to raise suspicions of violating AT&T copyrights.  In the
70sources you will find comments which provide far more documentation for
71these routines than AT&T ever provided for their strings stuff,  I just
72don't happen to have put it in nroff -man form.   Had I done so, the .3
73files would have outbulked the .c files!
74
75    These files are in the public domain.  This includes getopt.c, which
76is the work of Henry Spencer, University of Toronto Zoology, who says of
77it "None of this software is derived from Bell software. I had no access
78to the source for Bell's versions at the time I wrote it.  This software
79is hereby explicitly placed in the public domain.  It may  be  used  for
80any purpose on any machine by anyone." I would greatly prefer it if *my*
81material received no military use.
82
83