aboutsummaryrefslogtreecommitdiffstats
path: root/libpatch_style_requires_text.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-01-09 22:04:24 +0100
committerMattias Andrée <maandree@kth.se>2024-01-09 22:04:24 +0100
commitae850b1ac755f471beac4dbfef4654fe3fbaaae9 (patch)
tree319e7f7f1b99cd1ee75e100f0a29b0f7c827ccea /libpatch_style_requires_text.c
downloadlibpatch-ae850b1ac755f471beac4dbfef4654fe3fbaaae9.tar.gz
libpatch-ae850b1ac755f471beac4dbfef4654fe3fbaaae9.tar.bz2
libpatch-ae850b1ac755f471beac4dbfef4654fe3fbaaae9.tar.xz
First commitHEADmaster
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libpatch_style_requires_text.c')
-rw-r--r--libpatch_style_requires_text.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/libpatch_style_requires_text.c b/libpatch_style_requires_text.c
new file mode 100644
index 0000000..631f9fb
--- /dev/null
+++ b/libpatch_style_requires_text.c
@@ -0,0 +1,22 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+
+
+int
+libpatch_style_requires_text(enum libpatch_style style, int multifile)
+{
+ switch (style) {
+ case LIBPATCH_STYLE_NORMAL:
+ case LIBPATCH_STYLE_COPIED:
+ case LIBPATCH_STYLE_UNIFIED:
+ return 0;
+ case LIBPATCH_STYLE_ED:
+ case LIBPATCH_STYLE_ED_ALTERNATIVE:
+ return LIBPATCH_STYLE_REQUIRES_LF_TERMINATION;
+ case LIBPATCH_STYLE_RCS:
+ return multifile ? LIBPATCH_STYLE_REQUIRES_LF_TERMINATION : 0;
+ default:
+ errno = EINVAL;
+ return -1;
+ }
+}