python/ext/py-musicutils.{c,h}: first .c and test
[aubio.git] / python / ext / py-musicutils.h
1 #ifndef _PY_AUBIO_MUSICUTILS_H_
2 #define _PY_AUBIO_MUSICUTILS_H_
3
4 static char Py_aubio_window_doc[] = ""
5 "window(string, integer) -> fvec\n"
6 "\n"
7 "Create a window\n"
8 "\n"
9 "Example\n"
10 "-------\n"
11 "\n"
12 ">>> window('hanningz', 1024)";
13
14 PyObject * Py_aubio_window(PyObject *self, PyObject *args);
15
16 #endif /* _PY_AUBIO_MUSICUTILS_H_ */