modified: src1/input.c
[GalaxyCodeBases.git] / c_cpp / etc / calc / custom / pzasusb8
blob1dfe7aa1bbc4eb3a0e7b084bb15a8dac55b82a7a
1 NAME
2     pzasusb8 - print a number in hex octets
4 SYNOPSIS
5     custom("pzasusb8", arg)
7 TYPES
8     arg         real
10     return      null
12 DESCRIPTION
13     This custom function prints out the numerator of a real value
14     in octets.  Each HALF value is printed in a separate line.
16     NOTE: The output will vary depending on the size of a HALF
17           and the byte order of the system.  See:
19                 custom("sysinfo", "BASEB")
20                 custom("sysinfo", "CALC_BYTE_ORDER")
22     for details.
24     This custom function is intented for testing of the general
25     custom interface.
27 EXAMPLE
28     > custom("pzasusb8", 0x01020304050607080910111213141516);
29     0:      13141516
30     1:      09101112
31     2:      05060708
32     3:      01020304
34     > custom("pzasusb8", 10^25)
35     0:      4a000000
36     1:      16140148
37     2:      00084595
39     > printf("%x\n", 10^25);
40     0x84595161401484a000000
42 LIMITS
43     calc must be built with ALLOW_CUSTOM= -DCUSTOM
44     calc must be executed with a -C arg.
46 LIBRARY
47     none
49 SEE ALSO
50     custom
52 ## Copyright (C) 1999  Landon Curt Noll
54 ## Calc is open software; you can redistribute it and/or modify it under
55 ## the terms of the version 2.1 of the GNU Lesser General Public License
56 ## as published by the Free Software Foundation.
58 ## Calc is distributed in the hope that it will be useful, but WITHOUT
59 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
60 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
61 ## Public License for more details.
63 ## A copy of version 2.1 of the GNU Lesser General Public License is
64 ## distributed with calc under the filename COPYING-LGPL.  You should have
65 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
66 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
68 ## @(#) $Revision: 30.1 $
69 ## @(#) $Id: pzasusb8,v 30.1 2007/03/16 11:10:04 chongo Exp $
70 ## @(#) $Source: /usr/local/src/bin/calc/custom/RCS/pzasusb8,v $
72 ## Under source code control:   1999/10/06 04:05:43
73 ## File existed as early as:    1999
75 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
76 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/