obstack 사용방법을 알아봤는데 struct obstack a; 이런방식으로 obstack을 사용하고 있습니다, 만약에 struct aa{ int i; }; 라는 구조체가 있을시 aa라는 구조체에 obstack을 사용하고 싶으면 어떻게 해야하는지 궁금하네요 알려주시면 감사하겠습니다~
obstack 사용법이라면 이곳(http://kldp.org/node/88397)을 참조하세요.
그저 자신의 구조체에 obstack을 넣는게 목적이라면
struct aa { struct obstack a; int i; };
텍스트 포맷에 대한 자세한 정보
<code>
<blockcode>
<apache>
<applescript>
<autoconf>
<awk>
<bash>
<c>
<cpp>
<css>
<diff>
<drupal5>
<drupal6>
<gdb>
<html>
<html5>
<java>
<javascript>
<ldif>
<lua>
<make>
<mysql>
<perl>
<perl6>
<php>
<pgsql>
<proftpd>
<python>
<reg>
<spec>
<ruby>
<foo>
[foo]
http://kldp.org/node/88397
obstack 사용법이라면 이곳(http://kldp.org/node/88397)을 참조하세요.
그저 자신의 구조체에 obstack을 넣는게 목적이라면
이렇게 하시고 aa구조체를 obstack의 함수들로 넘길 때 (struct obstack*)로 typecast하시면 되겠죠?
댓글 달기