Advertisement
Guest User

Untitled

a guest
Feb 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. "gto function":{
  2. "prefix": "function",
  3. "description": "create a new function",
  4. "body": [
  5. "${1:returnType} ${2:myNewFunction}($0)",
  6. "{",
  7. " static const char *szFctName = __FUNCTION__;",
  8. " ${1} ${3:returnVar} = ${4:defaultValue};",
  9. " ",
  10. " log_Write(LOG_LEVEL_DEBUG, THIS_MODULE, \"->%s\", szFctName);",
  11. " ",
  12. "SafeExit:",
  13. " log_Write(LOG_LEVEL_DEBUG, THIS_MODULE, \"<-%s ${3}=${5|%d,@%p,%s|}\", szFctName);",
  14. " return ${3};",
  15. "}"
  16. ]
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement