unparse.h 520 B

1234567891011121314151617181920212223
  1. /*
  2. * unparse.h - Dump an expression tree into a string
  3. *
  4. * Written 2009 by Werner Almesberger
  5. * Copyright 2009 by Werner Almesberger
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. */
  12. #ifndef UNPARSE_H
  13. #define UNPARSE_H
  14. #include "expr.h"
  15. char *unparse(const struct expr *expr);
  16. #endif /* !UNPARSE_H */