소스 검색

fixed two comments

arg@suckless.org 18 년 전
부모
커밋
af0034f3a5
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      dwm.c

+ 3 - 1
dwm.c

@@ -111,7 +111,7 @@ typedef struct {
 	regex_t *tagregex;
 } Regs;
 
-/* functions */
+/* function declarations */
 void applyrules(Client *c);
 void arrange(void);
 void attach(Client *c);
@@ -236,6 +236,8 @@ Regs *regs = NULL;
 unsigned int ntags = sizeof tags / sizeof tags[0];
 Bool seltags[sizeof tags / sizeof tags[0]] = {[0] = True};
 Bool prevtags[sizeof tags / sizeof tags[0]] = {[0] = True};
+
+/* function implementations */
 void
 applyrules(Client *c) {
 	static char buf[512];