Sign in
eclipse
/
cdt
/
org.eclipse.cdt.edc
/
f4e61ab425fa1779730985eeea09ef5c0085528b
/
.
/
org.eclipse.cdt.debug.edc.tests
/
resources
/
Projects
/
SimpleCpp
/
inc
/
mycode.h
blob: 5a0104da25a593f4b834301d72ffb17d0ac0e610 [
file
]
/*
* myheader.h
*
* Created on: Jan 27, 2010
* Author: eswartz
*/
#ifndef
MYCODE_H_
#define
MYCODE_H_
static
void
myfunc
()
{
int
x
=
122
;
Foo
foo
;
foo
.
x
=
x
;
foo
.
next
=
&
foo
;
}
#endif
/* MYCODE_H_ */