Projet

Général

Profil

Paste
Télécharger au format
Statistiques
| Branche: | Révision:

root / tools / munin-plugins-busybox / common.c @ 20993707

Historique | Voir | Annoter | Télécharger (164 octets)

1
#include <stdio.h>
2

    
3
int writeyes(void) {
4
        puts("yes");
5
        return 0;
6
}
7

    
8
int writeno(const char *s) {
9
        if(s)
10
                printf("no (%s)\n", s);
11
        else
12
                puts("no");
13
        return 1;
14
}