vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

comment-functions.in

(197B)


      1 static int addi(int a, int b) {
      2 	return a+b;
      3 }
      4 
      5 static long addl(long a, long b) {
      6 	return a+b;
      7 }
      8 
      9 static int muli(int a, int b) {
     10 	return a*b;
     11 }
     12 
     13 static long mull(long a, long b) {
     14 	return a*b;
     15 }