/* ------------------- */ /* --- nralloc2x.h --- */ /* ------------------- */ /* * Copyright (c) 2000-2014, Lionel Lacassagne, All rights reserved * Univ Paris Sud XI, CNRS * */ /* * 2002/06/11 ajout des fonctions endline */ #ifndef __NRALLOC2X_H__ #define __NRALLOC2X_H__ #include "nrc_os_config.h" #include "nrtype.h" #include "nrtypex.h" /* ----------------- */ /* --- trimatrix --- */ /* ----------------- */ #define type_trimatrix(t) \ t ** short_name(t,,trimatrix)(int32_t nrl, int32_t nrh, int32_t ncl, int32_t nch, int32_t step) type_trimatrix(int8_t); type_trimatrix(uint8_t); type_trimatrix(int16_t); type_trimatrix(uint16_t); type_trimatrix(int32_t); type_trimatrix(uint32_t); type_trimatrix(float); type_trimatrix(double); #endif /* __NRALLOC2X_H__ */ // Local Variables: // tab-width: 4 // c-basic-offset: 4 // c-file-offsets:((innamespace . 0)(inline-open . 0)) // indent-tabs-mode: nil // End: // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4