mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-09 02:10:10 +00:00
dd93aa9f50
use the modern version using GSubprocess that already exists in node-parser. Also change from one function to two - so tests can diff GBytes and strings, depending on which they prefer.
13 lines
593 B
C
13 lines
593 B
C
#pragma once
|
|
|
|
#include <glib.h>
|
|
|
|
char * diff_string_with_file (const char *file1,
|
|
const char *text,
|
|
gssize len,
|
|
GError **error);
|
|
|
|
char * diff_bytes_with_file (const char *file1,
|
|
GBytes *bytes,
|
|
GError **error);
|