summaryrefslogtreecommitdiff
path: root/examples/program_analysis/paper_demos/api2.after.txt
blob: 340e6819be3721654849bf488f82c6cf76d949dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include "cam.h"

#define BUFFER_SIZE (1024 * 1024)
char buffer[BUFFER_SIZE];

void try_record_audio() {
    int result = cam_record_audio(buffer, BUFFER_SIZE);
    if (result == -2) {
        printf("Could not record audio.\n");
    } else {
        printf("Recorded audio!\n");
    }
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback