Coding Copyright Conventions

Version: $Id: copyright.html,v 1.3 2001/05/14 10:01:16 hans Exp $

The following must be present in every source code file created at or for NaN Technologies B.V. :

1. Usage
2. C/C++/H files
3. Makefiles

1. Usage

Just copy-and-paste one of the below examples to the very top of your source code file and edit the explanation part. Don't worry about the Id: part, it will be replaced by CVS once you commit your file. Please keep your text lines within 72-character columns.

2. C/C++/Header files

/**
 * $Id: copyright.html,v 1.3 2001/05/14 10:01:16 hans Exp $
 * Copyright (C) 2001 NaN Technologies B.V.
 * max 2 lines explanation what this file is about
 * like: Functions to (de)initialize blahblah-device
 */

3. Makefiles

#
# $Id: copyright.html,v 1.3 2001/05/14 10:01:16 hans Exp $
# Copyright (C) 2001 NaN Technologies B.V.
# max 2 lines explanation what this file is about
# like: Create the blahblah library
#