#-*- mode: snippet; coding: utf-8 -*-
# name: insert a function with prototype
# key: func/
# --
${1:void} ${2:function_name}(${3:args});
$1 $2($3){
  $0
  return ${4:NULL};
}
