/* See LICENSE file for copyright and license details. */ #include "common.h" int libpatch_check_file(struct libpatch_file *file, enum libpatch_style style, int multifile) { int req = libpatch_style_requires_text(style, multifile); if (req > 0) { if (req & LIBPATCH_STYLE_REQUIRES_LF_TERMINATION) if (file->lf_terminated) req ^= LIBPATCH_STYLE_REQUIRES_LF_TERMINATION; } return req; }