~ubuntu-branches/debian/sid/frama-c/sid

« back to all changes in this revision

Viewing changes to tests/bugs/imbricated_comments.c

  • Committer: Bazaar Package Importer
  • Author(s): Mehdi Dogguy
  • Date: 2009-06-03 08:19:25 UTC
  • Revision ID: james.westby@ubuntu.com-20090603081925-kihvxvt0wy3zc4ar
Tags: upstream-20081201.dfsg
ImportĀ upstreamĀ versionĀ 20081201.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#define MAX_NAME_LENGTH 30
 
2
        typedef char NAME_TYPE[MAX_NAME_LENGTH];
 
3
 
 
4
        extern void F (const NAME_TYPE /* in */ name);
 
5
 
 
6
        void G (void)
 
7
        {
 
8
            F("toto") ;
 
9
        }