File indexing completed on 2024-05-12 05:48:39

0001 /*
0002     SPDX-FileCopyrightText: 2007 Nicolas Ternisien <nicolas.ternisien@gmail.com>
0003     SPDX-FileCopyrightText: 2015 Vyacheslav Matyushin
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #include "journaldTypes.h"
0009 
0010 namespace JournaldTypes
0011 {
0012 bool operator<(const JournalAddress &a1, const JournalAddress &a2)
0013 {
0014     return (a1.address < a2.address) && (a1.port < a2.port);
0015 }
0016 
0017 const char *ConsoleColorEscapeSequence = "\x1B.+m{1}";
0018 }