> +*/
> +
> +
> +#include "linefunctions.h"
> +
> +
> +// isspace()
> +gboolean issp(gchar c)
> +{
> +     return (c == ' ' || c == '\t' || c == '\f' ||
> +                     c == '\v' || c == '\r' || c == '\n');
> +}
> +
> +
> +// iswhitespaceline(gchar* line) checks if line is a whitespace line
> +gboolean iswhitespaceline(gchar* line)

function removed

---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/324/files#r49494638

Reply via email to