Advertisement
Guest User

Untitled

a guest
Apr 19th, 2015
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. /** Brief description which ends at this dot.
  2. * Details follow here.
  3. *
  4. * \todo Fix the bugs
  5. *
  6. * \param a Description of first argument
  7. * \param b Description of second argument
  8. * \return Descripton of the return value
  9. */
  10. float lolz(int a, int b)
  11. {
  12. ...
  13. }
  14.  
  15. /** Description of this global. */
  16. int teh_global = 22;
  17.  
  18. typedef struct {
  19. double x; /**< The x coordinate, in meters */
  20. double y; /**< The y coordinate, in meters */
  21. } point;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement