Changeset 39
- Timestamp:
- 03/08/07 15:56:37 (2 years ago)
- Files:
-
- blog-service/trunk/blog.c (modified) (1 diff)
- blog-service/trunk/blog.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
blog-service/trunk/blog.c
r35 r39 32 32 } 33 33 34 voidblog_ref(Blog *blog) {34 Blog *blog_ref(Blog *blog) { 35 35 blog->refcount++; 36 return blog; 36 37 } 37 38 blog-service/trunk/blog.h
r35 r39 46 46 void blog_category_free(BlogCategory *category); 47 47 Blog *blog_new(void); 48 voidblog_ref(Blog *blog);48 Blog *blog_ref(Blog *blog); 49 49 void blog_unref(Blog *blog); 50 50
