Added copyright information to files.

This commit is contained in:
braga 2006-05-20 18:09:42 +00:00
parent 93ff610fdd
commit 5e2331df34
4 changed files with 32 additions and 0 deletions

View File

@ -1,3 +1,11 @@
/*
FTP file system
Copyright (C) 2006 Robson Braga Araujo <robsonbraga@gmail.com>
This program can be distributed under the terms of the GNU GPL.
See the file COPYING.
*/
#define _XOPEN_SOURCE
#include <time.h>
#include <string.h>

View File

@ -1,6 +1,14 @@
#ifndef __CURLFTPFS_FTPFS_LS_H__
#define __CURLFTPFS_FTPFS_LS_H__
/*
FTP file system
Copyright (C) 2006 Robson Braga Araujo <robsonbraga@gmail.com>
This program can be distributed under the terms of the GNU GPL.
See the file COPYING.
*/
#include "cache.h"
int parse_dir(const char* list, const char* dir,

View File

@ -1,6 +1,14 @@
#ifndef __CURLFTPFS_FTPFS_H__
#define __CURLFTPFS_FTPFS_H__
/*
FTP file system
Copyright (C) 2006 Robson Braga Araujo <robsonbraga@gmail.com>
This program can be distributed under the terms of the GNU GPL.
See the file COPYING.
*/
#include <curl/curl.h>
#include <curl/easy.h>
#include <pthread.h>

View File

@ -1,3 +1,11 @@
/*
FTP file system
Copyright (C) 2006 Robson Braga Araujo <robsonbraga@gmail.com>
This program can be distributed under the terms of the GNU GPL.
See the file COPYING.
*/
#include "ftpfs.h"
#include "ftpfs-ls.h"
#include <stdlib.h>