https://github.com/srvariable/funca
funca - Get all the signatures of your projects!
https://github.com/srvariable/funca
c
Last synced: 8 months ago
JSON representation
funca - Get all the signatures of your projects!
- Host: GitHub
- URL: https://github.com/srvariable/funca
- Owner: SrVariable
- License: mit
- Created: 2025-03-22T21:25:22.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-17T13:21:23.000Z (11 months ago)
- Last Synced: 2025-04-18T03:55:13.989Z (11 months ago)
- Topics: c
- Language: C
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.es.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
# ✅ funca
**funca** es un programa que obtiene las firmas/declaraciones/como lo quieras llamar, de tus proyectos. La versión actual detecta funciones que utilizan corchetes {}. En el futuro será capaz de detectar más formatos.
> [!WARNING]
>
> El proyecto sigue en desarrollo, úsalo bajo tu propia responsabilidad.
>
> La versión actual es ideal para proyectos simples/intermedios.
# 🛠 Instalación
Clona el repositorio
```
git clone https://github.com/SrVariable/funca
```
Navega al proyecto
```
cd funca
```
Compila el programa o bien usando el compilador directamente
```
cc -Wall -Wextra -Werror -o funca funca.c
```
O usando make
```
make
```
# 💡 Uso
Ejecuta el programa
```
./funca
```
Para obtener todas las funciones del directorio actual
```
./funca .
```
Para obtener todas las funciones de un archivo específico
```
./funca funca.c
```