File: doxygen.dox

package info (click to toggle)
nfft 3.5.3-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,972 kB
  • sloc: ansic: 44,442; lisp: 1,697; makefile: 1,322; sh: 744; sed: 5
file content (29 lines) | stat: -rw-r--r-- 666 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*! \file nfft3.h 
 *  Header file for NFFT3 
 */

/*! \fn extern void *nfft_malloc(size_t n)
 *  Our \c malloc function
 *  \param n The number of bytes to allocate
 */

/*! \fn extern void nfft_free(void *p)
 *  Our \c free function
 *  \param p Pointer to the memory region to free
 */

/*! \typedef typedef void *(*nfft_malloc_type_function) (size_t n)
 *  A \c malloc type function
 */

/*! \typedef typedef void  (*nfft_free_type_function) (void *p)
 *  A \c free type function
 */

/*! \var extern nfft_malloc_type_function nfft_malloc_hook
 *  Hook for \c nfft_malloc
 */

/*! \var extern nfft_free_type_function nfft_free_hook
 *  Hook for \c nfft_free
 */