From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Robert P. J. Day" Subject: proper declaration/definition of inline functions? Date: Tue, 2 Aug 2005 15:02:58 -0400 (EDT) Message-ID: Mime-Version: 1.0 Return-path: Sender: linux-c-programming-owner@vger.kernel.org List-Id: Content-Type: TEXT/PLAIN; charset="us-ascii" Content-Transfer-Encoding: 7bit To: C programming list what is the proper usage of inline functions? would you first declare it inline in a header file, and also define it inline in the corresponding source file? (yes, i know the compiler is under no obligation to inline them ... i just want to know the canonical way to use them.) rday