5 lines
78 B
C++
5 lines
78 B
C++
void warn1(int *first, int *last) {
|
|
*first = 0;
|
|
if (first < last) {
|
|
}
|
|
}
|