File: alias_target.h

package info (click to toggle)
muon-meson 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,816 kB
  • sloc: ansic: 40,094; python: 1,570; cpp: 596; sh: 356; asm: 147; makefile: 16; f90: 7
file content (14 lines) | stat: -rw-r--r-- 284 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef MUON_BACKEND_NINJA_ALIAS_TARGET_H
#define MUON_BACKEND_NINJA_ALIAS_TARGET_H

#include <stdio.h>

#include "lang/types.h"

struct workspace;
struct project;
struct write_tgt_ctx;

bool ninja_write_alias_tgt(struct workspace *wk, obj tgt_id, struct write_tgt_ctx *ctx);

#endif