File: c2tex.bat

package info (click to toggle)
lgrind 3.67-9
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid, trixie
  • size: 636 kB
  • sloc: ansic: 2,261; makefile: 96; asm: 75; sh: 28
file content (14 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
@echo off
rem convert .c to .lg 
if not exist %1.c goto Complain

lgrind -i -v subst %1.c > %1.lg
echo Created %1.lg
goto Done

:Complain
echo '%1.c' does not exist.

:Done