AminetAminet
Search:
85516 packages online
About
Recent
Browse
Search
Upload
Setup
Services

dev/lib/json-c.lha

Mirror:Random
Showing: m68k-amigaos icongeneric icon
No screenshot available
Short:parse/generate JSON, static libs+headers
Author:Michael Clark, Eric Haszlakiewicz et al.
Uploader:Cameron Armstrong (Nightfox) <cameronscottarmstrong gmail com>
Type:dev/lib
Version:0.19
Architecture:m68k-amigaos >= 2.0; ppc-amigaos; ppc-morphos
Date:2026-08-24
Requires:an Amiga gcc compiler
Replaces:dev/lib/json-c.lha
Download:dev/lib/json-c.lha - View contents
Readme:dev/lib/json-c.readme
Downloads:1917

json-c implements a reference-counted object model for JSON, a parser that
builds it from text, and a serialiser that writes it back out. This archive
contains static libraries and public headers for Amiga development.

    https://github.com/json-c/json-c


Contents

    json-c/json-c.readme             this file
    json-c/AmigaOS3/...              m68k AmigaOS libraries and headers
    json-c/AmigaOS4/...              ppc-amigaos libraries and headers
    json-c/MorphOS/...               ppc-morphos libraries and headers

    Under each OS directory the trees follow the compiler's own layout, so
    they can be copied straight over an existing SDK, e.g.

        cp -a json-c/AmigaOS3/* /opt/amiga/m68k-amigaos/

    AmigaOS3 ships one set per C runtime -- newlib at the top level, plus
    libnix/ and clib2/ -- and within each, one library per multilib:

        lib/                   68000, absolute addressing
        lib/libm020/           68020, absolute addressing
        lib/libb/              68000, -fbaserel
        lib/libb/libm020/      68020, -fbaserel
        lib/libb32/libm020/    68020, -fbaserel32

    On PPC a C runtime is not a separate tree but a multilib slot beneath one
    shared lib/, with headers in the single shared include/:

        AmigaOS4    lib/               newlib
                    lib/clib2/         clib2
                    lib/clib4/         clib4

        MorphOS     lib/               ixemul
                    lib/libb32/        ixemul, -mbaserel32
                    lib/libnix/        native C library (-noixemul)
                    lib/libb32/libnix/ native C library, -mbaserel32

    -mclib=libnix and -noixemul select the same MorphOS multilib. That ABI is
    the self-contained one -- an ixemul build needs ixemul.library on the
    target -- so prefer lib/libnix/ for new code.


Usage

    #include <json-c/json.h>

    struct json_object *o = json_tokener_parse("{\"a\":1}");
    printf("%s\n", json_object_to_json_string(o));
    json_object_put(o);

    Link with -ljson-c -lm, after your own objects on the command line. For
    clib2 add -lunix as well, since clib2 keeps its POSIX layer there.


Which variants link

    Verified by compiling the snippet above against each shipped library.

    AmigaOS3  libnix    all 5 slots link.

              clib2     lib/libm020/ and lib/libb32/libm020/ link. The other
                        three fail inside clib2 itself: its 68000 multilib has
                        no strtoll()/strtoull(), and 16-bit -fbaserel overflows
                        with "truncated to fit: DREL16" once json-c's data is
                        added. -fbaserel32 has no such limit.

              newlib    builds, but does not link: the m68k newlib tree has no
                        gettimeofday(). The libraries are shipped anyway, since
                        that is a gap in the SDK rather than in json-c and a
                        newlib with gettimeofday() implemented would link.

    AmigaOS4  all three (newlib, clib2, clib4) link.

    MorphOS   all four slots link.


A note on base-relative addressing (AmigaOS3)

    A base-relative library addresses its globals through a4, which the
    program's startup code sets up once. Only link the libb/ or libb32/
    variants into a program that is itself base-relative AND that marks every
    function the OS calls back into (BOOPSI/MUI dispatchers, struct Hook
    entries, interrupt servers) with __saveds. The m68k SDI_hook.h macros set
    up register arguments but do not add __saveds, so this is easy to get
    wrong, and the failure mode is intermittent memory corruption rather than
    a clean error -- libnix keeps malloc's heap state in a4-relative storage.

    Conversely a non-base-relative library built at -O1 or above may use a4 as
    a scratch register, which is harmless in a non-base-relative program but
    corrupts the base pointer of one that is.

    Match the variant to the program. If in doubt, use the plain lib/ or
    lib/libm020/ builds.


Licence

    MIT; see COPYING in the source distribution.


Contents of dev/lib/json-c.lha
 PERMSSN    UID  GID    PACKED    SIZE  RATIO METHOD CRC     STAMP          NAME
---------- ----------- ------- ------- ------ ---------- ------------ -------------
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:45 json-c/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/clib2/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/clib2/include/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/AmigaOS3/clib2/include/json-c/
-rw-r--r--   502/20       1124    2840  39.6% -lh5- 5f58 Jul  4 09:56 json-c/AmigaOS3/clib2/include/json-c/arraylist.h
-rw-r--r--   502/20        895    2703  33.1% -lh5- 3325 Jul  4 09:28 json-c/AmigaOS3/clib2/include/json-c/debug.h
-rw-r--r--   502/20        449     834  53.8% -lh5- 52fb Aug 23 18:44 json-c/AmigaOS3/clib2/include/json-c/json.h
-rw-r--r--   502/20        605    1372  44.1% -lh5- f52c Jul  4 09:56 json-c/AmigaOS3/clib2/include/json-c/json_c_version.h
-rw-r--r--   502/20        114     183  62.3% -lh5- 4ca2 Aug 23 18:44 json-c/AmigaOS3/clib2/include/json-c/json_config.h
-rw-r--r--   502/20        369     696  53.0% -lh5- b595 Jul  4 09:56 json-c/AmigaOS3/clib2/include/json-c/json_inttypes.h
-rw-r--r--   502/20      11194   45221  24.8% -lh5- 4c15 Jul  4 09:28 json-c/AmigaOS3/clib2/include/json-c/json_object.h
-rw-r--r--   502/20       2966    9589  30.9% -lh5- 7286 Jul  4 09:56 json-c/AmigaOS3/clib2/include/json-c/json_object_iterator.h
-rw-r--r--   502/20       1126    2455  45.9% -lh5- 4b4b Jul  4 09:28 json-c/AmigaOS3/clib2/include/json-c/json_patch.h
-rw-r--r--   502/20       2277    8002  28.5% -lh5- 85fd Jul  4 09:56 json-c/AmigaOS3/clib2/include/json-c/json_pointer.h
-rw-r--r--   502/20       3527   10646  33.1% -lh5- e913 Jul  4 09:28 json-c/AmigaOS3/clib2/include/json-c/json_tokener.h
-rw-r--r--   502/20        733    1666  44.0% -lh5- ba5e Jul  4 09:28 json-c/AmigaOS3/clib2/include/json-c/json_types.h
-rw-r--r--   502/20       1476    3920  37.7% -lh5- 53b8 Jul  4 09:28 json-c/AmigaOS3/clib2/include/json-c/json_util.h
-rw-r--r--   502/20       1170    3175  36.9% -lh5- cf6a Jul  4 09:28 json-c/AmigaOS3/clib2/include/json-c/json_visit.h
-rw-r--r--   502/20       3443   12830  26.8% -lh5- a25b Jul  4 09:56 json-c/AmigaOS3/clib2/include/json-c/linkhash.h
-rw-r--r--   502/20       1682    4353  38.6% -lh5- 58af Jul  4 09:28 json-c/AmigaOS3/clib2/include/json-c/printbuf.h
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/AmigaOS3/clib2/lib/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/AmigaOS3/clib2/lib/libb/
-rw-r--r--   502/20      25120   67864  37.0% -lh5- f137 Aug 23 18:44 json-c/AmigaOS3/clib2/lib/libb/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/AmigaOS3/clib2/lib/libb/libm020/
-rw-r--r--   502/20      25470   68068  37.4% -lh5- 6cfe Aug 23 18:44 json-c/AmigaOS3/clib2/lib/libb/libm020/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/AmigaOS3/clib2/lib/libb32/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/AmigaOS3/clib2/lib/libb32/libm020/
-rw-r--r--   502/20      25540   68608  37.2% -lh5- b466 Aug 23 18:44 json-c/AmigaOS3/clib2/lib/libb32/libm020/libjson-c.a
-rw-r--r--   502/20      25054   68500  36.6% -lh5- 9df9 Aug 23 18:43 json-c/AmigaOS3/clib2/lib/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/AmigaOS3/clib2/lib/libm020/
-rw-r--r--   502/20      25073   68072  36.8% -lh5- 144a Aug 23 18:44 json-c/AmigaOS3/clib2/lib/libm020/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/include/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/include/json-c/
-rw-r--r--   502/20       1124    2840  39.6% -lh5- 5f58 Jul  4 09:56 json-c/AmigaOS3/include/json-c/arraylist.h
-rw-r--r--   502/20        895    2703  33.1% -lh5- 3325 Jul  4 09:28 json-c/AmigaOS3/include/json-c/debug.h
-rw-r--r--   502/20        449     834  53.8% -lh5- 52fb Aug 23 18:43 json-c/AmigaOS3/include/json-c/json.h
-rw-r--r--   502/20        605    1372  44.1% -lh5- f52c Jul  4 09:56 json-c/AmigaOS3/include/json-c/json_c_version.h
-rw-r--r--   502/20        114     183  62.3% -lh5- 4ca2 Aug 23 18:43 json-c/AmigaOS3/include/json-c/json_config.h
-rw-r--r--   502/20        369     696  53.0% -lh5- b595 Jul  4 09:56 json-c/AmigaOS3/include/json-c/json_inttypes.h
-rw-r--r--   502/20      11194   45221  24.8% -lh5- 4c15 Jul  4 09:28 json-c/AmigaOS3/include/json-c/json_object.h
-rw-r--r--   502/20       2966    9589  30.9% -lh5- 7286 Jul  4 09:56 json-c/AmigaOS3/include/json-c/json_object_iterator.h
-rw-r--r--   502/20       1126    2455  45.9% -lh5- 4b4b Jul  4 09:28 json-c/AmigaOS3/include/json-c/json_patch.h
-rw-r--r--   502/20       2277    8002  28.5% -lh5- 85fd Jul  4 09:56 json-c/AmigaOS3/include/json-c/json_pointer.h
-rw-r--r--   502/20       3527   10646  33.1% -lh5- e913 Jul  4 09:28 json-c/AmigaOS3/include/json-c/json_tokener.h
-rw-r--r--   502/20        733    1666  44.0% -lh5- ba5e Jul  4 09:28 json-c/AmigaOS3/include/json-c/json_types.h
-rw-r--r--   502/20       1476    3920  37.7% -lh5- 53b8 Jul  4 09:28 json-c/AmigaOS3/include/json-c/json_util.h
-rw-r--r--   502/20       1170    3175  36.9% -lh5- cf6a Jul  4 09:28 json-c/AmigaOS3/include/json-c/json_visit.h
-rw-r--r--   502/20       3443   12830  26.8% -lh5- a25b Jul  4 09:56 json-c/AmigaOS3/include/json-c/linkhash.h
-rw-r--r--   502/20       1682    4353  38.6% -lh5- 58af Jul  4 09:28 json-c/AmigaOS3/include/json-c/printbuf.h
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/lib/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/lib/libb/
-rw-r--r--   502/20      24881   67836  36.7% -lh5- fd96 Aug 23 18:43 json-c/AmigaOS3/lib/libb/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/lib/libb/libm020/
-rw-r--r--   502/20      25258   67936  37.2% -lh5- 5300 Aug 23 18:43 json-c/AmigaOS3/lib/libb/libm020/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/lib/libb32/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/lib/libb32/libm020/
-rw-r--r--   502/20      25331   68408  37.0% -lh5- 2b7b Aug 23 18:43 json-c/AmigaOS3/lib/libb32/libm020/libjson-c.a
-rw-r--r--   502/20      24799   68004  36.5% -lh5- 32ac Aug 23 18:43 json-c/AmigaOS3/lib/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/lib/libm020/
-rw-r--r--   502/20      24841   67616  36.7% -lh5- e607 Aug 23 18:43 json-c/AmigaOS3/lib/libm020/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/libnix/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/libnix/include/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/libnix/include/json-c/
-rw-r--r--   502/20       1124    2840  39.6% -lh5- 5f58 Jul  4 09:56 json-c/AmigaOS3/libnix/include/json-c/arraylist.h
-rw-r--r--   502/20        895    2703  33.1% -lh5- 3325 Jul  4 09:28 json-c/AmigaOS3/libnix/include/json-c/debug.h
-rw-r--r--   502/20        449     834  53.8% -lh5- 52fb Aug 23 18:43 json-c/AmigaOS3/libnix/include/json-c/json.h
-rw-r--r--   502/20        605    1372  44.1% -lh5- f52c Jul  4 09:56 json-c/AmigaOS3/libnix/include/json-c/json_c_version.h
-rw-r--r--   502/20        114     183  62.3% -lh5- 4ca2 Aug 23 18:43 json-c/AmigaOS3/libnix/include/json-c/json_config.h
-rw-r--r--   502/20        369     696  53.0% -lh5- b595 Jul  4 09:56 json-c/AmigaOS3/libnix/include/json-c/json_inttypes.h
-rw-r--r--   502/20      11194   45221  24.8% -lh5- 4c15 Jul  4 09:28 json-c/AmigaOS3/libnix/include/json-c/json_object.h
-rw-r--r--   502/20       2966    9589  30.9% -lh5- 7286 Jul  4 09:56 json-c/AmigaOS3/libnix/include/json-c/json_object_iterator.h
-rw-r--r--   502/20       1126    2455  45.9% -lh5- 4b4b Jul  4 09:28 json-c/AmigaOS3/libnix/include/json-c/json_patch.h
-rw-r--r--   502/20       2277    8002  28.5% -lh5- 85fd Jul  4 09:56 json-c/AmigaOS3/libnix/include/json-c/json_pointer.h
-rw-r--r--   502/20       3527   10646  33.1% -lh5- e913 Jul  4 09:28 json-c/AmigaOS3/libnix/include/json-c/json_tokener.h
-rw-r--r--   502/20        733    1666  44.0% -lh5- ba5e Jul  4 09:28 json-c/AmigaOS3/libnix/include/json-c/json_types.h
-rw-r--r--   502/20       1476    3920  37.7% -lh5- 53b8 Jul  4 09:28 json-c/AmigaOS3/libnix/include/json-c/json_util.h
-rw-r--r--   502/20       1170    3175  36.9% -lh5- cf6a Jul  4 09:28 json-c/AmigaOS3/libnix/include/json-c/json_visit.h
-rw-r--r--   502/20       3443   12830  26.8% -lh5- a25b Jul  4 09:56 json-c/AmigaOS3/libnix/include/json-c/linkhash.h
-rw-r--r--   502/20       1682    4353  38.6% -lh5- 58af Jul  4 09:28 json-c/AmigaOS3/libnix/include/json-c/printbuf.h
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/libnix/lib/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/libnix/lib/libb/
-rw-r--r--   502/20      24978   67844  36.8% -lh5- ea57 Aug 23 18:43 json-c/AmigaOS3/libnix/lib/libb/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/libnix/lib/libb/libm020/
-rw-r--r--   502/20      25257   67952  37.2% -lh5- 68fe Aug 23 18:43 json-c/AmigaOS3/libnix/lib/libb/libm020/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/libnix/lib/libb32/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/libnix/lib/libb32/libm020/
-rw-r--r--   502/20      25329   68432  37.0% -lh5- aaf2 Aug 23 18:43 json-c/AmigaOS3/libnix/lib/libb32/libm020/libjson-c.a
-rw-r--r--   502/20      24880   68036  36.6% -lh5- d2b6 Aug 23 18:43 json-c/AmigaOS3/libnix/lib/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:43 json-c/AmigaOS3/libnix/lib/libm020/
-rw-r--r--   502/20      24937   67776  36.8% -lh5- 4e79 Aug 23 18:43 json-c/AmigaOS3/libnix/lib/libm020/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/AmigaOS4/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/AmigaOS4/include/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/AmigaOS4/include/json-c/
-rw-r--r--   502/20       1124    2840  39.6% -lh5- 5f58 Jul  4 09:56 json-c/AmigaOS4/include/json-c/arraylist.h
-rw-r--r--   502/20        895    2703  33.1% -lh5- 3325 Jul  4 09:28 json-c/AmigaOS4/include/json-c/debug.h
-rw-r--r--   502/20        449     834  53.8% -lh5- 52fb Aug 23 18:44 json-c/AmigaOS4/include/json-c/json.h
-rw-r--r--   502/20        605    1372  44.1% -lh5- f52c Jul  4 09:56 json-c/AmigaOS4/include/json-c/json_c_version.h
-rw-r--r--   502/20        114     183  62.3% -lh5- 4ca2 Aug 23 18:44 json-c/AmigaOS4/include/json-c/json_config.h
-rw-r--r--   502/20        369     696  53.0% -lh5- b595 Jul  4 09:56 json-c/AmigaOS4/include/json-c/json_inttypes.h
-rw-r--r--   502/20      11194   45221  24.8% -lh5- 4c15 Jul  4 09:28 json-c/AmigaOS4/include/json-c/json_object.h
-rw-r--r--   502/20       2966    9589  30.9% -lh5- 7286 Jul  4 09:56 json-c/AmigaOS4/include/json-c/json_object_iterator.h
-rw-r--r--   502/20       1126    2455  45.9% -lh5- 4b4b Jul  4 09:28 json-c/AmigaOS4/include/json-c/json_patch.h
-rw-r--r--   502/20       2277    8002  28.5% -lh5- 85fd Jul  4 09:56 json-c/AmigaOS4/include/json-c/json_pointer.h
-rw-r--r--   502/20       3527   10646  33.1% -lh5- e913 Jul  4 09:28 json-c/AmigaOS4/include/json-c/json_tokener.h
-rw-r--r--   502/20        733    1666  44.0% -lh5- ba5e Jul  4 09:28 json-c/AmigaOS4/include/json-c/json_types.h
-rw-r--r--   502/20       1476    3920  37.7% -lh5- 53b8 Jul  4 09:28 json-c/AmigaOS4/include/json-c/json_util.h
-rw-r--r--   502/20       1170    3175  36.9% -lh5- cf6a Jul  4 09:28 json-c/AmigaOS4/include/json-c/json_visit.h
-rw-r--r--   502/20       3443   12830  26.8% -lh5- a25b Jul  4 09:56 json-c/AmigaOS4/include/json-c/linkhash.h
-rw-r--r--   502/20       1682    4353  38.6% -lh5- 58af Jul  4 09:28 json-c/AmigaOS4/include/json-c/printbuf.h
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/AmigaOS4/lib/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/AmigaOS4/lib/clib2/
-rw-r--r--   502/20      47762  130802  36.5% -lh5- 6c45 Aug 23 18:44 json-c/AmigaOS4/lib/clib2/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/AmigaOS4/lib/clib4/
-rw-r--r--   502/20      47749  131162  36.4% -lh5- 8659 Aug 23 18:44 json-c/AmigaOS4/lib/clib4/libjson-c.a
-rw-r--r--   502/20      47634  130658  36.5% -lh5- 04b9 Aug 23 18:44 json-c/AmigaOS4/lib/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/MorphOS/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:44 json-c/MorphOS/include/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:45 json-c/MorphOS/include/json-c/
-rw-r--r--   502/20       1124    2840  39.6% -lh5- 5f58 Jul  4 09:56 json-c/MorphOS/include/json-c/arraylist.h
-rw-r--r--   502/20        895    2703  33.1% -lh5- 3325 Jul  4 09:28 json-c/MorphOS/include/json-c/debug.h
-rw-r--r--   502/20        449     834  53.8% -lh5- 52fb Aug 23 18:45 json-c/MorphOS/include/json-c/json.h
-rw-r--r--   502/20        605    1372  44.1% -lh5- f52c Jul  4 09:56 json-c/MorphOS/include/json-c/json_c_version.h
-rw-r--r--   502/20        114     183  62.3% -lh5- 4ca2 Aug 23 18:45 json-c/MorphOS/include/json-c/json_config.h
-rw-r--r--   502/20        369     696  53.0% -lh5- b595 Jul  4 09:56 json-c/MorphOS/include/json-c/json_inttypes.h
-rw-r--r--   502/20      11194   45221  24.8% -lh5- 4c15 Jul  4 09:28 json-c/MorphOS/include/json-c/json_object.h
-rw-r--r--   502/20       2966    9589  30.9% -lh5- 7286 Jul  4 09:56 json-c/MorphOS/include/json-c/json_object_iterator.h
-rw-r--r--   502/20       1126    2455  45.9% -lh5- 4b4b Jul  4 09:28 json-c/MorphOS/include/json-c/json_patch.h
-rw-r--r--   502/20       2277    8002  28.5% -lh5- 85fd Jul  4 09:56 json-c/MorphOS/include/json-c/json_pointer.h
-rw-r--r--   502/20       3527   10646  33.1% -lh5- e913 Jul  4 09:28 json-c/MorphOS/include/json-c/json_tokener.h
-rw-r--r--   502/20        733    1666  44.0% -lh5- ba5e Jul  4 09:28 json-c/MorphOS/include/json-c/json_types.h
-rw-r--r--   502/20       1476    3920  37.7% -lh5- 53b8 Jul  4 09:28 json-c/MorphOS/include/json-c/json_util.h
-rw-r--r--   502/20       1170    3175  36.9% -lh5- cf6a Jul  4 09:28 json-c/MorphOS/include/json-c/json_visit.h
-rw-r--r--   502/20       3443   12830  26.8% -lh5- a25b Jul  4 09:56 json-c/MorphOS/include/json-c/linkhash.h
-rw-r--r--   502/20       1682    4353  38.6% -lh5- 58af Jul  4 09:28 json-c/MorphOS/include/json-c/printbuf.h
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:45 json-c/MorphOS/lib/
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:45 json-c/MorphOS/lib/libb32/
-rwxr-xr-x   502/20      45967  126646  36.3% -lh5- ec07 Aug 23 18:45 json-c/MorphOS/lib/libb32/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:45 json-c/MorphOS/lib/libb32/libnix/
-rwxr-xr-x   502/20      45490  125494  36.2% -lh5- 3d06 Aug 23 18:45 json-c/MorphOS/lib/libb32/libnix/libjson-c.a
-rwxr-xr-x   502/20      48068  129482  37.1% -lh5- 5a5e Aug 23 18:44 json-c/MorphOS/lib/libjson-c.a
drwxr-xr-x   502/20          0       0 ****** -lhd- 0000 Aug 23 18:45 json-c/MorphOS/lib/libnix/
-rwxr-xr-x   502/20      47537  128270  37.1% -lh5- fb5f Aug 23 18:45 json-c/MorphOS/lib/libnix/libjson-c.a
-rw-r--r--   502/20       1923    4447  43.2% -lh5- 10b8 Aug 23 18:42 json-c/json-c.readme
---------- ----------- ------- ------- ------ ---------- ------------ -------------
 Total       144 files  874628 2480338  35.3%            Aug 24 10:47
Page generated in 0.03 seconds
Aminet © 1992-2024 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>