mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-22 02:51:03 +00:00
14 lines
164 B
C
14 lines
164 B
C
#include <stdio.h>
|
|
|
|
int writeyes(void) {
|
|
puts("yes");
|
|
return 0;
|
|
}
|
|
|
|
int writeno(const char *s) {
|
|
if(s)
|
|
printf("no (%s)\n", s);
|
|
else
|
|
puts("no");
|
|
return 1;
|
|
}
|