gitextract_txv3m7cj/ ├── .dir-locals.el ├── .editorconfig ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── regr_macos.yml │ └── regression.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.ip4r ├── expected/ │ ├── ip4r-softerr.out │ ├── ip4r-v11.out │ └── ip4r.out ├── ip4r.control ├── scripts/ │ ├── ip4r--2.0--2.1.sql │ ├── ip4r--2.1--2.2.sql │ ├── ip4r--2.2--2.4.sql │ ├── ip4r--2.4.sql │ ├── ip4r--unpackaged1--2.0.sql │ ├── ip4r--unpackaged2.0--2.0.sql │ └── ip4r--unpackaged2.1--2.1.sql ├── sql/ │ ├── ip4r-softerr.sql │ ├── ip4r-v11.sql │ └── ip4r.sql ├── src/ │ ├── ip4r.c │ ├── ip4r_funcs.h │ ├── ip4r_module.c │ ├── ip6r.c │ ├── ip6r_funcs.h │ ├── ipaddr.c │ ├── ipr.h │ ├── ipr_internal.h │ ├── iprange.c │ └── raw_io.c └── tools/ ├── numeric-tests.mk └── numeric.mk