Overview
Comment: | *** empty log message *** |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
415d72c1f333fa9e5677c9c7f2b63d15 |
User & Date: | gawthrop@users.sourceforge.net on 2000-11-27 18:06:33 |
Other Links: | branch diff | manifest | tags |
Context
2000-11-27
| ||
18:16:18 | Initial revision check-in: 372736b7d0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
18:06:33 | *** empty log message *** check-in: 415d72c1f3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
17:45:00 | Removed "System" from heading check-in: 8bd6b51c9d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/name2index from [4e9682d136] to [23ba065049].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.3 1997/05/22 09:42:48 peterg ## Returns 0 if no names. ## ## Revision 1.2 1997/05/22 09:28:22 peterg ## Removed trailing , in output. ## ## Revision 1.1 1997/05/22 08:48:21 peterg ## Initial revision ## ############################################################### awk ' { | > > > | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | # Copyright (c) P.J.Gawthrop, 1997. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.4 1997/12/04 22:10:18 peterg ## Handles argument list - variable names. ## ## Revision 1.3 1997/05/22 09:42:48 peterg ## Returns 0 if no names. ## ## Revision 1.2 1997/05/22 09:28:22 peterg ## Removed trailing , in output. ## ## Revision 1.1 1997/05/22 08:48:21 peterg ## Initial revision ## ############################################################### awk ' { name_index[$4]=$2; } END{ M=split(names,xynames,":"); if (M==0) printf("0\n") else { |
︙ | ︙ |