Advertisement
Guest User

Untitled

a guest
Oct 20th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. struct my_struct{
  2. field1;
  3. field2; /** comment 1
  4. */ field3;
  5. /* comment 2 */
  6. } struct_name;
  7.  
  8. struct my_struct{
  9. field1;
  10. field2;
  11. field3;
  12. } struct_name;
  13.  
  14. grep -o '[^/*]*[^*/]'
  15.  
  16. gcc -fpreprocessed -dD -E -P file.c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement