/* 'C' library prototypes for combined sea state and atmospheric boundary layer model  

  Developed by Mark A. Bourassa

  Based on Original Bourassa-Vincent-Wood combined sea state and atmospheric
  boundary layer model developed at Purdue University.  Several upgrades and
  options have been added while at the Center for Ocean-Atmospheric
  Prediction Studies (COAPS) at Florida State University.

  Dr. Bourassa is currently (June 2011) an Associate Professor at the Florida 
  State University.
  Please send comments, suggestions, and requests for added features to
      Dr. Mark Bourassa
      Center for Ocean-Atmospheric Prediction Studies
      Florida State University
      Tallahassee, FL 32306-3041

      Email: bourassa@coaps.fsu.edu
      Phone: (904) 644-6923

  The bulk of the ducumentation is in the subroutine pmix. 

*/


#include <float.h>
#include <math.h>
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>

int call_ht_adj_(int dyn_in_prm, float dyn_in_val, float dyn_in_val2,
          float CONVECT, float CONV_CRIT, float pressure, int air_moist_prm,
          float air_moist_val, int sfc_moist_prm, float sfc_moist_val,
          float salinity, int ss_prm, float ss_val, float t_air,
          int sst_prm, float t_skin, float ref_ht_wind, float ref_ht_tq,
          float z_wanted, int astab, int eqv_neut_prm, float Qnet, int warn,
          int flux_model, int z0_mom_prm, int z0_TQ_prm, int stable_prm,
          float *shf, float *lhf, float *tau, float *u_star,
          float *t_star, float *q_star, float *z_over_L, float *wave_age,
          float *dom_phs_spd, float *h_sig, float *ww_stab, float *zo_m,
          float *u_at_z, float *t_at_z, float *q_at_z );