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

« back to all changes in this revision

Viewing changes to tests/jessie/array_double.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
typedef struct
 
2
{
 
3
  char   Texte[10][10] ;
 
4
} T_CompositionPage ;
 
5
 
 
6
T_CompositionPage Page;
 
7
 
 
8
//void StrCpy(char* s);
 
9
 
 
10
/*@ axiomatic EqMessage {
 
11
  @   predicate eq_message{L}(char *s, integer m);
 
12
  @ }
 
13
  @*/
 
14
 
 
15
void f();
 
16
 
 
17
//@ ensures eq_message(Page.Texte[9],0);
 
18
void f() {
 
19
  //  StrCpy(Page.Texte[9]);
 
20
}
 
21
 
 
22
/* 
 
23
Local Variables:
 
24
compile-command: "LC_ALL=C make array_double"
 
25
End:
 
26
*/