mirror of
git://projects.qi-hardware.com/cae-tools.git
synced 2024-12-23 15:26:45 +02:00
25 lines
522 B
C
25 lines
522 B
C
/*
|
|
* slice.h - Generate slices
|
|
*
|
|
* Written 2015 by Werner Almesberger
|
|
* Copyright 2015 by Werner Almesberger
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
|
|
#ifndef SLICE_H
|
|
#define SLICE_H
|
|
|
|
#include "stl.h"
|
|
|
|
|
|
void slice(struct v f[3]);
|
|
void slice_dump(void);
|
|
void slice_init(void);
|
|
|
|
#endif /* !SLICE_H */
|