/* * 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 */