• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*=============================================================================
2     Copyright (c) 2006 Joel de Guzman
3     http://spirit.sourceforge.net/
4 
5     Use, modification and distribution is subject to the Boost Software
6     License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7     http://www.boost.org/LICENSE_1_0.txt)
8 =============================================================================*/
9 
10 /*`
11 This should appear when =stub.c= is included.
12 
13 [foo_c]
14 */
15 
16 /*[foo_c */
17     /*`
18     This is the C [*['foo]] function.
19 
20     This description can have paragraphs...
21 
22     * lists
23     * etc.
24 
25     And any quickbook block markup.
26     */
foo()27 char* foo()
28 {
29     // return 'em, foo man!
30     return "foo";
31 }
32 /*]*/
33