Guest User

C++ LineBreak Style

a guest
Mar 20th, 2014
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Version 1
  2. static void keyCallback(GLFWwindow *win, int key, int scancode, int action,
  3.                         int mods);
  4.  
  5.  
  6. // Version 2
  7. static void keyCallback(
  8.   GLFWwindow* win, int key, int scancode, int action, int mods);
  9.  
  10.  
  11. // Version 3
  12. static void
  13.   keyCallback(GLFWwindow* win, int key, int scancode, int action, int mods);
  14.  
  15.  
  16. // Version 4
  17. static void keyCallback(GLFWwindow* win,
  18.                         int key,
  19.                         int scancode,
  20.                         int action,
  21.                         int mods);
Advertisement
Add Comment
Please, Sign In to add comment