~ubuntu-branches/ubuntu/feisty/ncbi-tools6/feisty

« back to all changes in this revision

Viewing changes to connect/ncbi_util.h

  • Committer: Bazaar Package Importer
  • Author(s): Barry deFreese
  • Date: 2006-07-19 23:28:07 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060719232807-et3cdmcjgmnyleyx
Tags: 6.1.20060507-3ubuntu1
Re-merge with Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef CONNECT___NCBI_UTIL__H
2
2
#define CONNECT___NCBI_UTIL__H
3
3
 
4
 
/*  $Id: ncbi_util.h,v 6.22 2005/07/11 18:09:14 lavr Exp $
 
4
/*  $Id: ncbi_util.h,v 6.23 2006/04/14 20:07:55 lavr Exp $
5
5
 * ===========================================================================
6
6
 *
7
7
 *                            PUBLIC DOMAIN NOTICE
237
237
 */
238
238
extern NCBI_XCONNECT_EXPORT const char* CORE_GetPlatform(void);
239
239
 
240
 
extern NCBI_XCONNECT_EXPORT int/*bool*/ UTIL_MatchesMask(const char* name,
241
 
                                                         const char* mask);
 
240
 
 
241
extern NCBI_XCONNECT_EXPORT int/*bool*/ UTIL_MatchesMaskEx
 
242
(const char* name,
 
243
 const char* mask,
 
244
 int/*bool*/ ignore_case
 
245
);
 
246
 
 
247
/* Same as UTIL_MatchesMaskEx(name, mask, 1) */
 
248
extern NCBI_XCONNECT_EXPORT int/*bool*/ UTIL_MatchesMask
 
249
(const char* name,
 
250
 const char* mask
 
251
);
242
252
 
243
253
 
244
254
#ifdef __cplusplus
252
262
/*
253
263
 * ---------------------------------------------------------------------------
254
264
 * $Log: ncbi_util.h,v $
 
265
 * Revision 6.23  2006/04/14 20:07:55  lavr
 
266
 * +UTIL_MatchesMaskEx()
 
267
 *
255
268
 * Revision 6.22  2005/07/11 18:09:14  lavr
256
269
 * +UTIL_MatchesMask()
257
270
 *