Now you can add the following to enable the four buttons.
How to get at the buttons using wiringPi C functions
//Button 1
pinMode (13, INPUT);
pullUpDnControl (13, PUD_UP);
//Button 2
pinMode (7, INPUT);
pullUpDnControl (7, PUD_UP);
//Button 3
pinMode (12, INPUT);
pullUpDnControl (12, PUD_UP);
//Button 4
pinMode (4, INPUT);
pullUpDnControl (4, PUD_UP);
Then to get the status of button 1
digitalRead (13) //0=pushed 1= not pushed