Skip to content

Commit 6242d18

Browse files
committed
metrics_contest added
1 parent 2478b3b commit 6242d18

File tree

3 files changed

+36
-0
lines changed

3 files changed

+36
-0
lines changed

files.make

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ COMMON_CFILES=\
191191
lib/lang_config_vis.c\
192192
lib/master_html.c\
193193
lib/meta_generic.c\
194+
lib/metrics_contest.c\
194195
lib/mime_type.c\
195196
lib/misctext.c\
196197
lib/ncheck_packet.c\
@@ -601,6 +602,7 @@ HFILES=\
601602
./include/ejudge/lang_config_vis.h\
602603
./include/ejudge/list_ops.h\
603604
./include/ejudge/meta_generic.h\
605+
./include/ejudge/metrics_contest.h\
604606
./include/ejudge/mime_type.h\
605607
./include/ejudge/mischtml.h\
606608
./include/ejudge/misctext.h\

include/ejudge/metrics_contest.h

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/* -*- mode: c; c-basic-offset: 4 -*- */
2+
#ifndef __METRICS_CONTEST_H__
3+
#define __METRICS_CONTEST_H__
4+
5+
/* Copyright (C) 2022 Alexander Chernov <[email protected]> */
6+
7+
/*
8+
* This program is free software; you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation; either version 2 of the License, or
11+
* (at your option) any later version.
12+
*
13+
* This program is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU General Public License for more details.
17+
*/
18+
19+
#endif /* __METRICS_CONTEST_H__ */

lib/metrics_contest.c

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/* -*- mode: c; c-basic-offset: 4 -*- */
2+
3+
/* Copyright (C) 2022 Alexander Chernov <[email protected]> */
4+
5+
/*
6+
* This program is free software; you can redistribute it and/or modify
7+
* it under the terms of the GNU General Public License as published by
8+
* the Free Software Foundation; either version 2 of the License, or
9+
* (at your option) any later version.
10+
*
11+
* This program is distributed in the hope that it will be useful,
12+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
* GNU General Public License for more details.
15+
*/

0 commit comments

Comments
 (0)