blob: 3555d208263ecfac626f4ceddc56302e215e01e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
#define FUSE_USE_VERSION 26
#include <stdlib.h>
#include <stdio.h>
#include <fuse.h>
#include <fuse_opt.h>
#include <mp3fs.h>
/* Prototypes. */
static int mp3fs_opt_proc (void *, const char *, int, struct fuse_args *);
int
main(int argc, char **argv)
{
printf("Starting up mp3fs\n");
mp3_run(argc, argv);
printf("Shutting down mp3fs\n");
}
|