File: align_lib_old.h

package info (click to toggle)
staden 2.0.0%2Bb11-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,584 kB
  • sloc: ansic: 240,605; tcl: 65,360; cpp: 12,854; makefile: 11,203; sh: 3,023; fortran: 2,033; perl: 63; awk: 46
file content (15 lines) | stat: -rw-r--r-- 406 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _ALIGN_LIB_H
#define _ALIGN_LIB_H

#include <stdio.h>
#include <sys/types.h>

extern char consen_6(FastInt B[6]);
extern void expand(char *A, char *B, int M, int N,
		   char *A2, char *B2, int *AL, int *BL, FastInt *S,
		   int keep_pads);
extern void expand_6(char *A, FastInt (*B)[6], int M, int N,
		     char *A2, FastInt (*B2)[6], int *AL, int *BL, FastInt *S,
		     int keep_pads);

#endif