File: reassign_typeconstant.h

package info (click to toggle)
python-ltfatpy 1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,412 kB
  • sloc: ansic: 8,546; python: 6,470; makefile: 15
file content (30 lines) | stat: -rw-r--r-- 624 bytes parent folder | download | duplicates (5)
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
30
#ifndef _REASSIGN_TYPECONSTANT_H
#define _REASSIGN_TYPECONSTANT_H
#include "ltfat.h"

#define fbreassOptOut_EXPANDRAT 2

typedef enum
{
    REASS_DEFAULT          = 0,
    REASS_NOTIMEWRAPAROUND = 1
} fbreassHints;

typedef struct {
   ltfatInt** repos;
   ltfatInt*  reposl;
   ltfatInt*  reposlmax;
   ltfatInt   l;
} fbreassOptOut;

LTFAT_EXTERN_TOO fbreassOptOut*
fbreassOptOut_init(const ltfatInt l,const ltfatInt inital);

LTFAT_EXTERN_TOO void
fbreassOptOut_expand(fbreassOptOut* oo,const ltfatInt ii);

LTFAT_EXTERN_TOO void
fbreassOptOut_destroy(fbreassOptOut* oo);


#endif /* end of include guard: _REASSIGN_H */